Skip to content

Commit

Permalink
pre-commit checks update
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosrodlop committed May 21, 2024
1 parent 0ffcd96 commit 80329c3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion blueprints/02-at-scale/k8s/openldap-stack-values.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,4 +116,4 @@ ltb-passwd:

# Enable the phpldapadmin web UI service for LDAP management after deployment.
phpldapadmin:
enabled: false
enabled: false
10 changes: 5 additions & 5 deletions blueprints/02-at-scale/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ locals {
fluentbit_s3_location = "${module.cbci_s3_bucket.s3_bucket_arn}/fluentbit"
velero_s3_location = "${module.cbci_s3_bucket.s3_bucket_arn}/velero"

epoch_millis = time_static.epoch.unix * 1000
epoch_millis = time_static.epoch.unix * 1000
global_password = random_string.global_pass_string.result

cloudwatch_logs_expiration_days = 7
Expand All @@ -64,10 +64,10 @@ locals {
velero_controller_backup_selector = "tenant=${local.velero_controller_backup}"
velero_schedule_name = "schedule-${local.velero_controller_backup}"

cbci_agents_ns = "cbci-agents"
cbci_agents_ns = "cbci-agents"
cbci_agent_podtemplname_validation = "maven-and-go-ondemand"

cbci_admin_user = "admin_cbci_a"
cbci_admin_user = "admin_cbci_a"
global_pass_jsonpath = "'{.data.sec_globalPassword}'"
}

Expand Down Expand Up @@ -108,8 +108,8 @@ module "eks_blueprints_addon_cbci" {

create_k8s_secrets = true
k8s_secrets = templatefile("k8s/secrets-values.yml", {
global_password = local.global_password
})
global_password = local.global_password
})

prometheus_target = true

Expand Down
5 changes: 5 additions & 0 deletions blueprints/02-at-scale/providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ terraform {
source = "hashicorp/null"
version = ">= 3.1.0"
}

random = {
source = "hashicorp/random"
version = ">= 3.6.1"
}
}

}
Expand Down

0 comments on commit 80329c3

Please sign in to comment.