summaryrefslogtreecommitdiff
path: root/doc/examples/cloud-config-chef-oneiric.txt
diff options
context:
space:
mode:
authorTak Nishigori <nishigori.tak@gmail.com>2020-04-23 03:38:15 +0900
committerGitHub <noreply@github.com>2020-04-22 14:38:15 -0400
commit1b049e6e51a9ac1ca02bf33629ede5c47c5b1941 (patch)
treec8247c41e423ee09c42d9c38c5e585009d0b9c82 /doc/examples/cloud-config-chef-oneiric.txt
parentceb3ae77486411664fd032ba7535d5dd3f02684b (diff)
downloadvyos-cloud-init-1b049e6e51a9ac1ca02bf33629ede5c47c5b1941.tar.gz
vyos-cloud-init-1b049e6e51a9ac1ca02bf33629ede5c47c5b1941.zip
YAML align indent sizes for docs readability (#323)
This proposal has been aligned in a human readable. There are no changes to this except for spac The indentation size is not specifically defined in the YAML RFC $ make yaml has passed on my-machine I set the indentation size to the largest number of articles in the repository (dictionary: 2) (And also include nishigori as a CLA signer.)
Diffstat (limited to 'doc/examples/cloud-config-chef-oneiric.txt')
-rw-r--r--doc/examples/cloud-config-chef-oneiric.txt52
1 files changed, 26 insertions, 26 deletions
diff --git a/doc/examples/cloud-config-chef-oneiric.txt b/doc/examples/cloud-config-chef-oneiric.txt
index 75c9aeed..ab2e2a33 100644
--- a/doc/examples/cloud-config-chef-oneiric.txt
+++ b/doc/examples/cloud-config-chef-oneiric.txt
@@ -48,38 +48,38 @@ apt:
chef:
- # 11.10 will fail if install_type is "gems" (LP: #960576)
- install_type: "packages"
+ # 11.10 will fail if install_type is "gems" (LP: #960576)
+ install_type: "packages"
- # Chef settings
- server_url: "https://chef.yourorg.com:4000"
+ # Chef settings
+ server_url: "https://chef.yourorg.com:4000"
- # Node Name
- # Defaults to the instance-id if not present
- node_name: "your-node-name"
+ # Node Name
+ # Defaults to the instance-id if not present
+ node_name: "your-node-name"
- # Environment
- # Defaults to '_default' if not present
- environment: "production"
+ # Environment
+ # Defaults to '_default' if not present
+ environment: "production"
- # Default validation name is chef-validator
- validation_name: "yourorg-validator"
+ # Default validation name is chef-validator
+ validation_name: "yourorg-validator"
- # value of validation_cert is not used if validation_key defined,
- # but variable needs to be defined (LP: #960547)
- validation_cert: "unused"
- validation_key: |
- -----BEGIN RSA PRIVATE KEY-----
- YOUR-ORGS-VALIDATION-KEY-HERE
- -----END RSA PRIVATE KEY-----
-
- # A run list for a first boot json
- run_list:
- - "recipe[apache2]"
- - "role[db]"
+ # value of validation_cert is not used if validation_key defined,
+ # but variable needs to be defined (LP: #960547)
+ validation_cert: "unused"
+ validation_key: |
+ -----BEGIN RSA PRIVATE KEY-----
+ YOUR-ORGS-VALIDATION-KEY-HERE
+ -----END RSA PRIVATE KEY-----
- # Specify a list of initial attributes used by the cookbooks
- initial_attributes:
+ # A run list for a first boot json
+ run_list:
+ - "recipe[apache2]"
+ - "role[db]"
+
+ # Specify a list of initial attributes used by the cookbooks
+ initial_attributes:
apache:
prefork:
maxclients: 100