» Data Source: aws_ssm_parameter

Provides an SSM Parameter data source.

» Example Usage

data "aws_ssm_parameter" "foo" {
  name = "foo"
}

» Argument Reference

The following arguments are supported:

  • name - (Required) The name of the parameter.
  • with_decryption - (Optional) Whether to return decrypted SecureString value. Defaults to true.

In addition to all arguments above, the following attributes are exported:

  • arn - The ARN of the parameter.
  • name - The name of the parameter.
  • type - The type of the parameter. Valid types are String, StringList and SecureString.
  • value - The value of the parameter.