Explorar o código

Merge pull request #223 from mdr-engineering/feature/ftd_MSOCI-1781_KeyCloakDeployment

Minor Updates to Keycloak
Frederick Damstra %!s(int64=4) %!d(string=hai) anos
pai
achega
62aff11a31
Modificáronse 2 ficheiros con 2 adicións e 1 borrados
  1. 1 0
      base/keycloak/rds.tf
  2. 1 1
      base/keycloak/vars.tf

+ 1 - 0
base/keycloak/rds.tf

@@ -43,6 +43,7 @@ module "keycloak_db" {
   allocated_storage  = var.rds_storage
   storage_encrypted  = true
   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
 
   # 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 {
   type = number
-  default = 10
+  default = 100
 }
 
 variable "keycloak_instance_count" {