Update Config-not-required.mdx (#10527)
This commit is contained in:
parent
00e503388e
commit
ab89df9a88
|
@ -57,6 +57,10 @@ type Config struct {
|
|||
// ```json
|
||||
// "extra_arguments": [ "--extra-vars", "Region={{user `Region`}} Stage={{user `Stage`}}" ]
|
||||
// ```
|
||||
// In certain scenarios where you want to pass ansible command line arguments
|
||||
// that include parameter and value (for example `--vault-password-file pwfile`),
|
||||
// from ansible documentation this is correct format but that is NOT accepted here.
|
||||
// Instead you need to do it like `--vault-password-file=pwfile`.
|
||||
//
|
||||
// If you are running a Windows build on AWS, Azure, Google Compute, or OpenStack
|
||||
// and would like to access the auto-generated password that Packer uses to
|
||||
|
|
|
@ -15,6 +15,10 @@
|
|||
```json
|
||||
"extra_arguments": [ "--extra-vars", "Region={{user `Region`}} Stage={{user `Stage`}}" ]
|
||||
```
|
||||
In certain scenarios where you want to pass ansible command line arguments
|
||||
that include parameter and value (for example `--vault-password-file pwfile`),
|
||||
from ansible documentation this is correct format but that is NOT accepted here.
|
||||
Instead you need to do it like `--vault-password-file=pwfile`.
|
||||
|
||||
If you are running a Windows build on AWS, Azure, Google Compute, or OpenStack
|
||||
and would like to access the auto-generated password that Packer uses to
|
||||
|
|
Loading…
Reference in New Issue