Guest User

Untitled

a guest
Jan 18th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. resource "aws_vpc" "vpc" {
  2. cidr_block = "{$var.network_cidr}"
  3. tags {
  4. Name = "ECS_VPC"
  5. }
  6. }
  7.  
  8. variable "network_cidr" {
  9. description = "IP addressing for the network"
  10. }
  11.  
  12. network_cidr = "10.0.0.0/16"
Add Comment
Please, Sign In to add comment