variables.tf 981 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. // RDS Instance Variables
  2. variable "stack_name" {
  3. }
  4. variable "region" {
  5. }
  6. variable "security_group_ids" {
  7. default = []
  8. }
  9. variable "subnet_ids" {
  10. default = []
  11. }
  12. variable "rds_instance_name" {
  13. default = "nuxeo"
  14. }
  15. variable "rds_is_multi_az" {
  16. default = "false"
  17. }
  18. variable "rds_storage_type" {
  19. default = "standard"
  20. }
  21. variable "rds_allocated_storage" {
  22. description = "The allocated storage in GBs"
  23. default = "10"
  24. }
  25. variable "rds_engine_version" {
  26. // For valid engine versions, see:
  27. // See http://docs.aws.amazon.com/cli/latest/reference/rds/create-db-instance.html
  28. // --engine-version
  29. default = "9.4.7"
  30. }
  31. variable "rds_instance_class" {
  32. default = "db.t2.micro"
  33. }
  34. variable "database_name" {
  35. description = "The name of the database to create"
  36. }
  37. variable "database_user" {
  38. default = "nuxeo"
  39. }
  40. variable "database_password" {
  41. default = "nuxeo2016"
  42. }
  43. variable "db_parameter_group" {
  44. default = "default.postgres9.4"
  45. }