forked from aws/opsworks-cookbooks
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file is added to enable improved user experience when overriding attributes. Today customers often override the complete file, which will back-fire when OpsWorks introduces new attributes. By moving out customer attribute changes to separate files, we make it easier for the customer to keep track of their changes. It is also easier for OpsWorks to improve the cookbooks. Once agreed, all cookbooks would have a 'attributes/customize.rb'.
- Loading branch information
Showing
3 changed files
with
59 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
### | ||
# This is the place to override the apache2 cookbook's default attributes. | ||
# | ||
# Do not edit THIS file directly. Instead, create | ||
# "apache2/attributes/customize.rb" in your cookbook repository and | ||
# put the overrides in YOUR customize.rb file. | ||
### | ||
|
||
# The following shows how to override the Apache contact and timeout settings: | ||
# | ||
#normal[:apache][:contact] = 'you@your-site.com' | ||
#normal[:apache][:timeout] = 60 |