Files
opentf/website/source/docs/providers/aws/d/ssm_parameter.html.markdown
Paul Morton e4899de13e provider/aws: New SSM Parameter resource (#15035)
* 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
2017-06-06 09:55:25 +01:00

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 are String, StringList and SecureString.
  • value - (Required) The value of the parameter.