Browse Source

Make decisions

Users expect role authors to make decisions.  The role author is
supposed to be the expert who knows what choices to make on behalf of
the user.
Mike Ashley 8 years ago
parent
commit
982f9b0135
1 changed files with 4 additions and 0 deletions
  1. 4
    0
      CONTRIBUTING.md

+ 4
- 0
CONTRIBUTING.md View File

@@ -12,6 +12,10 @@ You'll want to set up a [local development environment](https://github.com/sover
12 12
 
13 13
 Sovereign is an Ansible playbook that uses the modules in this repository to configure a server. Modules should conform to the following design principles.
14 14
 
15
+### Making decisions
16
+
17
+A module exists to make decisions about how a service should be installed and configured. Make these decisions and minimize or eliminate configuration options exposed to the user. When in doubt, make a decision, and if the community feedback is vocal enough, only then expose an option.
18
+
15 19
 ### Idempotency
16 20
 
17 21
 A module must be idempotent. If it's run once or many times, the result should be the same. This means that in some cases the user will be left with post-installation finalization work to do. Post-install finalization should be reduced or eliminated if possible, but not at the cost of idempotency.

Loading…
Cancel
Save