summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README30
-rw-r--r--manifests/init.pp5
2 files changed, 35 insertions, 0 deletions
diff --git a/README b/README
new file mode 100644
index 0000000..7427e5a
--- /dev/null
+++ b/README
@@ -0,0 +1,30 @@
+Passwords
+------------
+
+This documents the puppet module passwords.
+
+Purpose
+-------
+
+this class is intended for the storage off all configuration passwords,
+cleartext, encrypted etc.
+
+Classes
+-------
+passwords
+
+Branches
+--------
+dev
+qa
+stage
+prod
+
+Access
+------
+Access to this module is strictly controlled, no one outside of GIT
+operations/systems/networking is allowed read or write access to this
+module.
+
+the non-sensative branches (dev/qa) may be exported external to this
+repo for use outside of GIT
diff --git a/manifests/init.pp b/manifests/init.pp
new file mode 100644
index 0000000..ae3559c
--- /dev/null
+++ b/manifests/init.pp
@@ -0,0 +1,5 @@
+class passwords {
+ # Mysql default passwords
+ $mysql_root_password = 'password'
+ $mysql_replication_password = 'password'
+}