Skip to content

Commit

Permalink
fixing cluster.hcl
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Jun 26, 2025
1 parent c6dc20e commit 77b3c61
Showing 1 changed file with 14 additions and 20 deletions.
34 changes: 14 additions & 20 deletions environment/region/vpc/cluster/cluster.hcl
Original file line number Diff line number Diff line change
@@ -1,28 +1,22 @@
locals {
# Cluster specific configuration
cluster_endpoint_public_access = true
cluster_name = "platform-eng-eks-mcm"
cluster_mailing_list = "matthew.c.morgan@census.gov"
eks_instance_disk_size = 100
eks_ng_desired_size = 2
eks_ng_max_size = 10
eks_ng_min_size = 2
enable_cluster_creator_admin_permissions = true
cluster_name = "csvd-platform-lab-mcm"
cluster_mailing_list = "matthew.c.morgan@census.gov"
eks_instance_disk_size = 100
eks_ng_desired_size = 2
eks_ng_max_size = 10
eks_ng_min_size = 2
organization = "census:ocio:csvd"
finops_project_name = "csvd_platformbaseline"
finops_project_number = "fs0000000078"
finops_project_role = "csvd_platformbaseline_app"

tags = {
"slim:schedule" = "8:00-17:00"
"cluster:size" = "min:${local.eks_ng_min_size}-max:${local.eks_ng_max_size}-desired:${local.eks_ng_desired_size}"
}

# Common configuration
common_retry_args = {
commands = get_terraform_commands_that_need_locking()
arguments = ["-lock-timeout=20m"]
}

common_dependencies = ["../eks", "../eks-config"]

common_mock_eks = {
cluster_name = "mock-cluster"
oidc_provider_arn = "arn:aws-us-gov:iam::123456789012:oidc-provider/mock"
module_enablement_overrides = {
"eks-arcgis" = false
"eks-postgresql" = false
}
}

0 comments on commit 77b3c61

Please sign in to comment.