Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion terraform/modules/argocd/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ resource "helm_release" "argocd" {
values = [
yamlencode({
server = {
service = { type = "LoadBalancer" }
service = { type = "ClusterIP" }
certificate = {
enabled = true
}
Expand Down
2 changes: 1 addition & 1 deletion terraform/modules/eks/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ resource "aws_eks_cluster" "this" {
vpc_config {
subnet_ids = var.private_subnets
endpoint_private_access = true
endpoint_public_access = true
endpoint_public_access = false
public_access_cidrs = var.public_access_cidrs
security_group_ids = [aws_security_group.cluster.id]
}
Expand Down
1 change: 1 addition & 0 deletions terraform/modules/eks/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ output "cluster_name" {
output "cluster_endpoint" {
description = "EKS cluster endpoint"
value = aws_eks_cluster.this.endpoint
sensitive = true
}

output "cluster_security_group_id" {
Expand Down