diff options
author | Scott Moser <smoser@ubuntu.com> | 2016-04-13 12:24:46 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2016-04-13 12:24:46 -0400 |
commit | ac50733f77fef296e4af46aa55311a295e964136 (patch) | |
tree | e247180845a4aa77bd55faa81490d7539f26acc1 /doc | |
parent | 96cc3852d8126af2dba7cd778473c23bcd883ceb (diff) | |
parent | 2b3f56294576998246e13f9b07074bad7b4bf212 (diff) | |
download | vyos-cloud-init-ac50733f77fef296e4af46aa55311a295e964136.tar.gz vyos-cloud-init-ac50733f77fef296e4af46aa55311a295e964136.zip |
chef: straighten out validation_cert and validation_key
Now, validation_key is always a path to a file, as it is in
chef's client.rb syntax.
validation_cert is always the *content* of that file that should
be written. However, if validation_cert is the string "system",
then we do not write that value, but rather assume the file exists.
LP: #1568940
Diffstat (limited to 'doc')
-rw-r--r-- | doc/examples/cloud-config-chef.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/examples/cloud-config-chef.txt b/doc/examples/cloud-config-chef.txt index 4edad653..b886cba2 100644 --- a/doc/examples/cloud-config-chef.txt +++ b/doc/examples/cloud-config-chef.txt @@ -67,7 +67,9 @@ chef: # Default validation name is chef-validator validation_name: "yourorg-validator" - validation_key: | + # if validation_cert's value is "system" then it is expected + # that the file already exists on the system. + validation_cert: | -----BEGIN RSA PRIVATE KEY----- YOUR-ORGS-VALIDATION-KEY-HERE -----END RSA PRIVATE KEY----- |