1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- // RDS Instance Variables
- variable "stack_name" {
- }
- variable "region" {
- }
- variable "security_group_ids" {
- default = []
- }
- variable "subnet_ids" {
- default = []
- }
- variable "rds_instance_name" {
- default = "nuxeo"
- }
- variable "rds_is_multi_az" {
- default = "false"
- }
- variable "rds_storage_type" {
- default = "standard"
- }
- variable "rds_allocated_storage" {
- description = "The allocated storage in GBs"
- default = "10"
- }
- variable "rds_engine_version" {
- // For valid engine versions, see:
- // See http://docs.aws.amazon.com/cli/latest/reference/rds/create-db-instance.html
- // --engine-version
- default = "9.4.7"
- }
- variable "rds_instance_class" {
- default = "db.t2.micro"
- }
- variable "database_name" {
- description = "The name of the database to create"
- }
- variable "database_user" {
- default = "nuxeo"
- }
- variable "database_password" {
- default = "nuxeo2016"
- }
- variable "db_parameter_group" {
- default = "default.postgres9.4"
- }
|