@hashicorp
The Amazon plugin can be used with HashiCorp Packer to create custom images on AWS.
- Official
- HCP Ready
Updated 2 years ago
- GitHub(opens in new tab)
Secrets Manager
The Secrets Manager data source provides information about a Secrets Manager secret version, including its secret value.
Note: Data sources is a feature exclusively available to HCL2 templates.
Basic examples of usage:
Reading key-value pairs from JSON back into a native Packer map can be accomplished with the jsondecode() function.
Configuration Reference
Required
name
(string) - Specifies the secret containing the version that you want to retrieve. You can specify either the Amazon Resource Name (ARN) or the friendly name of the secret.
Optional
key
(string) - Optional key for JSON secrets that contain more than one value. When set, thevalue
output will contain the value for the provided key.version_id
(string) - Specifies the unique identifier of the version of the secret that you want to retrieve. Overrides version_stage.version_stage
(string) - Specifies the secret version that you want to retrieve by the staging label attached to the version. Defaults to AWSCURRENT.
Output Data
value
(string) - When a key is provided, this will be the value for that key. If a key is not provided,value
will contain the first value found in the secret string.secret_string
(string) - The decrypted part of the protected secret information that was originally provided as a string.secret_binary
(string) - The decrypted part of the protected secret information that was originally provided as a binary. Base64 encoded.version_id
(string) - The unique identifier of this version of the secret.
Authentication
The Amazon Data Sources authentication works just like for the Amazon Builders. Both have the same authentication options, and you can refer to the Amazon Builders authentication to learn the options to authenticate for data sources.
Note: A data source will start and execute in your own authentication session. The authentication in the data source doesn't relate with the authentication on Amazon Builders.
Basic example of an Amazon data source authentication using assume_role
: