Эх сурвалжийг харах

Minor Updates to Keycloak

* Apply changes immediately
* Update space to the recommended 100GB minimum
Fred Damstra [afs macbook] 4 жил өмнө
parent
commit
9a55df50d5

+ 1 - 0
base/keycloak/rds.tf

@@ -43,6 +43,7 @@ module "keycloak_db" {
   allocated_storage  = var.rds_storage
   allocated_storage  = var.rds_storage
   storage_encrypted  = true
   storage_encrypted  = true
   kms_key_id = module.keycloak_key.key_arn
   kms_key_id = module.keycloak_key.key_arn
+  apply_immediately  = true # do not wait for maintenance window for changes
   ca_cert_identifier = local.ca_cert_identifier
   ca_cert_identifier = local.ca_cert_identifier
 
 
   # NOTE: Do NOT use 'user' as the value for 'username' as it throws:
   # NOTE: Do NOT use 'user' as the value for 'username' as it throws:

+ 1 - 1
base/keycloak/vars.tf

@@ -18,7 +18,7 @@ variable identifier {
 
 
 variable rds_storage {
 variable rds_storage {
   type = number
   type = number
-  default = 10
+  default = 100
 }
 }
 
 
 variable "keycloak_instance_count" {
 variable "keycloak_instance_count" {