mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-12 16:00:25 -04:00
* add new rds resource and some bugs fix * add docs * fix validator conflix fix validator conflix
29 lines
444 B
HCL
29 lines
444 B
HCL
variable "engine" {
|
|
default = "MySQL"
|
|
}
|
|
variable "engine_version" {
|
|
default = "5.6"
|
|
}
|
|
variable "instance_class" {
|
|
default = "rds.mysql.t1.small"
|
|
}
|
|
variable "storage" {
|
|
default = "10"
|
|
}
|
|
variable "net_type" {
|
|
default = "Intranet"
|
|
}
|
|
|
|
variable "user_name" {
|
|
default = "tf_tester"
|
|
}
|
|
variable "password" {
|
|
default = "Test12345"
|
|
}
|
|
|
|
variable "database_name" {
|
|
default = "bookstore"
|
|
}
|
|
variable "database_character" {
|
|
default = "utf8"
|
|
} |