github.com/ewbankkit/terraform@v0.7.7/examples/aws-rds/variables.tf (about) 1 variable "identifier" { 2 default = "mydb-rds" 3 description = "Identifier for your DB" 4 } 5 6 variable "storage" { 7 default = "10" 8 description = "Storage size in GB" 9 } 10 11 variable "engine" { 12 default = "postgres" 13 description = "Engine type, example values mysql, postgres" 14 } 15 16 variable "engine_version" { 17 description = "Engine version" 18 19 default = { 20 mysql = "5.6.22" 21 postgres = "9.4.1" 22 } 23 } 24 25 variable "instance_class" { 26 default = "db.t2.micro" 27 description = "Instance class" 28 } 29 30 variable "db_name" { 31 default = "mydb" 32 description = "db name" 33 } 34 35 variable "username" { 36 default = "myuser" 37 description = "User name" 38 } 39 40 variable "password" { 41 description = "password, provide through your ENV variables" 42 }