Skip to content

Commit

Permalink
Run terraform fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
mvandenburgh committed Jul 31, 2024
1 parent ec1836e commit 7821438
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions terraform/modules/spack/analytics_db.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ module "analytics_db" {
instance_class = var.gitlab_db_instance_class

# Credentials
db_name = "analytics"
username = "postgres"
port = "5432"
password = local.analytics_db_master_password
db_name = "analytics"
username = "postgres"
port = "5432"
password = local.analytics_db_master_password

publicly_accessible = false
db_subnet_group_name = aws_db_subnet_group.spack.name
Expand Down
2 changes: 1 addition & 1 deletion terraform/modules/spack/eks.tf
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ module "eks" {

# Use same role as Karpenter nodes
create_iam_role = false
iam_role_arn = module.karpenter.node_iam_role_arn
iam_role_arn = module.karpenter.node_iam_role_arn

taints = {
critical-addons-only = {
Expand Down
8 changes: 4 additions & 4 deletions terraform/modules/spack/gitlab_db.tf
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,10 @@ module "gitlab_db" {
major_engine_version = "14"
instance_class = var.gitlab_db_instance_class

db_name = "gitlabhq_production"
username = "postgres"
port = "5432"
password = local.gitlab_db_master_password
db_name = "gitlabhq_production"
username = "postgres"
port = "5432"
password = local.gitlab_db_master_password

publicly_accessible = false
db_subnet_group_name = aws_db_subnet_group.spack.name
Expand Down

0 comments on commit 7821438

Please sign in to comment.