terraform/examples/aws-rds/variables.tf

42 lines
723 B
Terraform
Raw Normal View History

2015-06-09 17:02:19 +02:00
variable "identifier" {
default = "mydb-rds"
description = "Identifier for your DB"
2015-06-09 17:02:19 +02:00
}
variable "storage" {
default = "10"
description = "Storage size in GB"
2015-06-09 17:02:19 +02:00
}
variable "engine" {
default = "postgres"
description = "Engine type, example values mysql, postgres"
2015-06-09 17:02:19 +02:00
}
variable "engine_version" {
description = "Engine version"
default = {
mysql = "5.6.22"
postgres = "9.4.1"
}
2015-06-09 17:02:19 +02:00
}
variable "instance_class" {
default = "db.t2.micro"
description = "Instance class"
2015-06-09 17:02:19 +02:00
}
variable "db_name" {
default = "mydb"
description = "db name"
2015-06-09 17:02:19 +02:00
}
variable "username" {
default = "myuser"
description = "User name"
2015-06-09 17:02:19 +02:00
}
variable "password" {
description = "password, provide through your ENV variables"
2015-06-09 17:02:19 +02:00
}