Skip to content

Commit

Permalink
Format fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Stacy Horton committed Jul 19, 2024
1 parent fdf968b commit 1d3566f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions odc_eks/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -73,15 +73,15 @@ module "vpc" {

moved {
from = module.vpc[0].aws_vpc_endpoint.s3[0]
to = module.vpc_endpoints[0].aws_vpc_endpoint.this["s3"]
to = module.vpc_endpoints[0].aws_vpc_endpoint.this["s3"]
}

module "vpc_endpoints" {
source = "git::https://github.com/terraform-aws-modules/terraform-aws-vpc.git//modules/vpc-endpoints?ref=v5.1.1"
count = var.create_vpc && var.enable_s3_endpoint ? 1 : 0

vpc_id = module.vpc[0].vpc_id
security_group_ids = [ module.vpc[0].default_security_group_id ]
vpc_id = module.vpc[0].vpc_id
security_group_ids = [module.vpc[0].default_security_group_id]

endpoints = {
s3 = {
Expand Down
2 changes: 1 addition & 1 deletion odc_eks/modules/eks/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ resource "aws_eks_cluster" "eks" {
}

access_config {
authentication_mode = "API_AND_CONFIG_MAP"
authentication_mode = "API_AND_CONFIG_MAP"
bootstrap_cluster_creator_admin_permissions = true
}

Expand Down

0 comments on commit 1d3566f

Please sign in to comment.