github.com/ves/terraform@v0.8.0-beta2/examples/clc/variables.tf (about)

     1  variable "clc_username" {
     2    default = "<username>"
     3  }
     4  
     5  variable "clc_password" {
     6    default = "<password>"
     7  }
     8  
     9  variable "clc_account" {
    10    default = "<alias>"
    11  }
    12  
    13  # Ubuntu 14.04
    14  variable "image" {
    15    default = "ubuntu-14-64-template"
    16  }
    17  
    18  variable "app_port" {
    19    default = 8080
    20  }