Skip to content

Instantly share code, notes, and snippets.

@hervekhg
Created April 29, 2019 15:38
Show Gist options
  • Save hervekhg/2d19fc4240f9aeeca9d94bb978ff1c12 to your computer and use it in GitHub Desktop.
Save hervekhg/2d19fc4240f9aeeca9d94bb978ff1c12 to your computer and use it in GitHub Desktop.
# --------------------------------------------------------------
# RDS SUBNET
# ---------------------------------------------------------------
resource "aws_db_subnet_group" "db" {
name = "${data.consul_keys.ck.var.project_name}-${var.install_name}"
subnet_ids = [
"${data.terraform_remote_state.network.aws_subnet_dataapp}"]
tags {
Name = "${data.consul_keys.ck.var.project_name}-${var.install_name}"
BillingBusinessApp = "${data.consul_keys.ck.var.billing_business_app}"
env = "${var.env}"
resource-name = "${data.consul_keys.ck.var.project_name}"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment