Initial commit from kro/examples/aws/eks-cluster-mgmt

This commit is contained in:
2026-04-21 09:55:53 -03:00
parent 0585444299
commit 7d11fd5889
66 changed files with 3667 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
# Output the ACK controller role ARN
output "ack_controller_role_arn" {
description = "ARN of the IAM role for ACK controller"
value = aws_iam_role.ack_controller.arn
}
# Output the kro controller role ARN
output "kro_controller_role_arn" {
description = "ARN of the IAM role for kro controller"
value = aws_iam_role.kro_controller.arn
}
# Output the argocd controller role ARN
output "argocd_controller_role_arn" {
description = "ARN of the IAM role for argocd controller"
value = aws_iam_role.argocd_controller.arn
}
# Output cluster name
output "cluster_name" {
description = "Name of the EKS cluster"
value = module.eks.cluster_name
}