variables.tf 959 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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 = "true"
  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. }
  30. variable "rds_instance_class" {
  31. default = "db.t2.micro"
  32. }
  33. variable "database_name" {
  34. description = "The name of the database to create"
  35. }
  36. variable "database_user" {
  37. default = "nuxeo"
  38. }
  39. variable "database_password" {
  40. default = "nuxeo2016"
  41. }
  42. variable "db_parameter_group" {
  43. default = "default.postgres9.4"
  44. }