Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2018
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. env="${terraform.workspace}"
  2. cidr_block_v = {
  3. "ops"="10.10.0.0/16",
  4. "production"="10.10.0.0/16",
  5. "staging"="10.1.0.0/16",
  6. }
  7. availability_zones = ["us-west-2a","us-west-2b","us-west-2c"]
  8. private_subnets_v = {
  9. "ops"="10.10.1.0/24, 10.10.2.0/24, 10.10.3.0/24",
  10. "production"="10.10.1.0/24, 10.10.2.0/24, 10.10.3.0/24",
  11. "staging"="10.0.1.0/24, 10.0.2.0/24, 10.0.3.0/24"
  12. }
  13. public_subnets_v = {
  14. "ops"="10.10.4.0/24, 10.10.5.0/24, 10.10.6.0/24",
  15. "production"="10.10.4.0/24, 10.10.5.0/24, 10.10.6.0/24",
  16. "staging"="10.1.1.0/24, 10.1.2.0/24, 10.1.3.0/24"
  17. }
  18. cidr_block="${lookup(local.cidr_block_v,local.env)}"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement