mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-06-01 22:02:24 -04:00
* New SSM Parameter resource Can be used for creating parameters in AWS' SSM Parameter Store that can then be used by other applications that have access to AWS and necessary IAM permissions. * Add docs for new SSM Parameter resource * Code Review and Bug Hunt and KMS Key - Addressed all issues in #14043 - Added ForceNew directive to type - Added the ability to specify a KMS key for encryption and decryption * Add SSM Parameter Data Source * Fix bad merge * Fix SSM Parameter Integration Tests * docs/aws: Fix typo in SSM sidebar link
886 B
886 B
layout, page_title, sidebar_current, description
| layout | page_title | sidebar_current | description |
|---|---|---|---|
| aws | AWS: aws_ssm_parameter | docs-aws-datasource-ssm-parameter | Provides a SSM Parameter datasource |
aws_ssm_parameter
Provides an SSM Parameter data source.
Example Usage
To store a basic string parameter:
data "aws_ssm_parameter" "foo" {
name = "foo"
}
~> Note: The unencrypted value of a SecureString will be stored in the raw state as plain-text. Read more about sensitive data in state.
Argument Reference
The following arguments are supported:
name- (Required) The name of the parameter.
The following attributes are exported:
name- (Required) The name of the parameter.type- (Required) The type of the parameter. Valid types areString,StringListandSecureString.value- (Required) The value of the parameter.