From fd1978777d153d27f2c062582acf31a293958503 Mon Sep 17 00:00:00 2001 From: Russell Harrison Date: Thu, 28 Jan 2016 14:55:29 -0500 Subject: WIP adding the lib_dyn role for the dyn_record module --- roles/lib_dyn/README.md | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 roles/lib_dyn/README.md (limited to 'roles/lib_dyn/README.md') diff --git a/roles/lib_dyn/README.md b/roles/lib_dyn/README.md new file mode 100644 index 000000000..225dd44b9 --- /dev/null +++ b/roles/lib_dyn/README.md @@ -0,0 +1,38 @@ +Role Name +========= + +A brief description of the role goes here. + +Requirements +------------ + +Any pre-requisites that may not be covered by Ansible itself or the role should be mentioned here. For instance, if the role uses the EC2 module, it may be a good idea to mention in this section that the boto package is required. + +Role Variables +-------------- + +A description of the settable variables for this role should go here, including any variables that are in defaults/main.yml, vars/main.yml, and any variables that can/should be set via parameters to the role. Any variables that are read from other roles and/or the global scope (ie. hostvars, group vars, etc.) should be mentioned here as well. + +Dependencies +------------ + +A list of other roles hosted on Galaxy should go here, plus any details in regards to parameters that may need to be set for other roles, or variables that are used from other roles. + +Example Playbook +---------------- + +Including an example of how to use your role (for instance, with variables passed in as parameters) is always nice for users too: + + - hosts: servers + roles: + - { role: username.rolename, x: 42 } + +License +------- + +BSD + +Author Information +------------------ + +An optional section for the role authors to include contact information, or a website (HTML is not allowed). -- cgit v1.2.3 From a871f7f96245cfcfeeb8a82b4137e76ff78b36c5 Mon Sep 17 00:00:00 2001 From: Russell Harrison Date: Fri, 29 Jan 2016 15:46:39 -0500 Subject: Cleaning up the dyn ansible module for merging --- roles/lib_dyn/README.md | 29 +++++++++-------------------- 1 file changed, 9 insertions(+), 20 deletions(-) (limited to 'roles/lib_dyn/README.md') diff --git a/roles/lib_dyn/README.md b/roles/lib_dyn/README.md index 225dd44b9..1eec9f81c 100644 --- a/roles/lib_dyn/README.md +++ b/roles/lib_dyn/README.md @@ -1,38 +1,27 @@ -Role Name +lib_dyn ========= -A brief description of the role goes here. +A role containing the dyn_record module for managing DNS records through Dyn's +API Requirements ------------ -Any pre-requisites that may not be covered by Ansible itself or the role should be mentioned here. For instance, if the role uses the EC2 module, it may be a good idea to mention in this section that the boto package is required. - -Role Variables --------------- - -A description of the settable variables for this role should go here, including any variables that are in defaults/main.yml, vars/main.yml, and any variables that can/should be set via parameters to the role. Any variables that are read from other roles and/or the global scope (ie. hostvars, group vars, etc.) should be mentioned here as well. - -Dependencies ------------- - -A list of other roles hosted on Galaxy should go here, plus any details in regards to parameters that may need to be set for other roles, or variables that are used from other roles. +The module requires the `dyn` python module for interacting with the Dyn API. +https://github.com/dyninc/dyn-python Example Playbook ---------------- -Including an example of how to use your role (for instance, with variables passed in as parameters) is always nice for users too: +To make sure the `dyn_record` module is available for use include the role +before it is used. - hosts: servers roles: - - { role: username.rolename, x: 42 } + - lib_dyn License ------- -BSD - -Author Information ------------------- +Apache -An optional section for the role authors to include contact information, or a website (HTML is not allowed). -- cgit v1.2.3