Skip to content

Commit 26b9e7e

Browse files
authored
Merge pull request #1149 from spack/reconcile-tf-state
Reconcile Terraform state with actual state of AWS
2 parents 051cdcb + 9093be7 commit 26b9e7e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

terraform/modules/spack_aws_k8s/cdash_db.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module "cdash_db" {
1515
identifier = "spack-cdash${local.suffix}"
1616

1717
engine = "mysql"
18-
engine_version = "8.0.35"
18+
engine_version = "8.0.40"
1919
family = "mysql8.0"
2020
major_engine_version = "8.0"
2121
instance_class = var.cdash_db_instance_class
@@ -39,8 +39,8 @@ module "cdash_db" {
3939

4040
allocated_storage = 300
4141
storage_type = "gp3"
42-
iops = 12000 # 3,000 is the minimum IOPs for <400 GB storage. We can increase this as needed.
43-
storage_throughput = 125 # 125 is the minimum throughput for <400 GB storage. We can increase this as needed.
42+
iops = 3000 # 3,000 is the minimum IOPs for <400 GB storage. We can increase this as needed.
43+
storage_throughput = 125 # 125 is the minimum throughput for <400 GB storage. We can increase this as needed.
4444

4545
vpc_security_group_ids = [module.mysql_security_group.security_group_id]
4646
}

terraform/modules/spack_aws_k8s/gitlab_db.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ module "gitlab_db_proxy" {
109109
}
110110

111111
engine_family = "POSTGRESQL"
112-
debug_logging = true
112+
debug_logging = false
113113

114114
target_db_instance = true
115115
db_instance_identifier = module.gitlab_db.db_instance_identifier

0 commit comments

Comments
 (0)