Created
March 3, 2019 19:57
-
-
Save 100daysofdevops/cb998f1a514fa4f80f7915d5a44418cd 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
| resource "aws_db_subnet_group" "rds-private-subnet" { | |
| name = "rds-private-subnet-group" | |
| subnet_ids = ["${var.rds_subnet1}","${var.rds_subnet2}"] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment