Skip to content

Instantly share code, notes, and snippets.

@davidvuong
Created August 11, 2020 13:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidvuong/b70e9fa577e809fd402c5826f582943e to your computer and use it in GitHub Desktop.
Save davidvuong/b70e9fa577e809fd402c5826f582943e to your computer and use it in GitHub Desktop.
resource "aws_ssm_parameter" "sqs_http_proxy_id" {
name = "/voltron/shared/sqs/http-proxy/id"
type = "String"
value = module.sqs_http_proxy.id
overwrite = true
}
data "aws_ssm_parameter" "sqs_http_proxy_queue_url" {
name = "/voltron/shared/sqs/http-proxy/id"
}
data.aws_ssm_parameter.sqs_http_proxy_queue_url.value
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment