Created
April 29, 2019 15:38
-
-
Save hervekhg/2d19fc4240f9aeeca9d94bb978ff1c12 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -------------------------------------------------------------- | |
# 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