github.com/gettyimages/terraform@v0.7.6-0.20161219132226-dc052c5707a3/examples/aws-networking/region/variables.tf (about)

     1  variable "region" {
     2    description = "The name of the AWS region to set up a network within"
     3  }
     4  
     5  variable "base_cidr_block" {}
     6  
     7  provider "aws" {
     8    region = "${var.region}"
     9  }