Skip to content

Commit

Permalink
sort
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Mar 21, 2025
1 parent cce6174 commit 7c030d9
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,21 +28,22 @@ resource "terraform_data" "subnet_validation" {
module "cluster" {
source = "git@github.e.it.census.gov:SCT-Engineering/terraform-aws-eks.git?ref=v20.34.0"

access_entries = local.access_entries
cloudwatch_log_group_retention_in_days = "14"
cluster_endpoint_private_access = var.cluster_endpoint_private_access
cluster_endpoint_public_access = var.cluster_endpoint_public_access
cluster_name = var.cluster_name
cluster_upgrade_policy = { support_type = "STANDARD" }
cluster_version = var.cluster_version
cluster_endpoint_public_access = var.cluster_endpoint_public_access
cluster_endpoint_private_access = var.cluster_endpoint_private_access
enable_cluster_creator_admin_permissions = var.enable_cluster_creator_admin_permissions
access_entries = local.access_entries
cluster_upgrade_policy = { support_type = "STANDARD" }

cluster_enabled_log_types = [
"api",
"audit",
"authenticator",
"controllerManager",
"scheduler",
]
cloudwatch_log_group_retention_in_days = "14"

vpc_id = local.vpc_id
subnet_ids = local.subnets
Expand Down

0 comments on commit 7c030d9

Please sign in to comment.