Skip to content

Instantly share code, notes, and snippets.

@keithrozario
Last active March 3, 2019 10:05
Show Gist options
  • Save keithrozario/ead7715fa64ae8cd38584e1e66be603f to your computer and use it in GitHub Desktop.
Save keithrozario/ead7715fa64ae8cd38584e1e66be603f to your computer and use it in GitHub Desktop.
export-ssm
resource "aws_ssm_parameter" "ssm_dynamodb_temp_table" {
type = "String"
description = "Name of DynamoDB Temp Table"
name = "/${var.app_name}/${terraform.workspace}/dynamodb_temp_table"
value = "${aws_dynamodb_table.dynamodb_temp.name}"
overwrite = true
}
resource "aws_ssm_parameter" "ssm_dynamodb_temp_table_arn" {
type = "String"
description = "ARN of DynamoDB Temp Table"
name = "/${var.app_name}/${terraform.workspace}/dynamodb_temp_table_arn"
value = "${aws_dynamodb_table.dynamodb_temp.arn}"
overwrite = true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment