1
0

feat: patch CMK module and updated EksIp6 module

This commit is contained in:
xpk
2026-02-25 18:06:40 +08:00
parent df22fcf46b
commit acd42ff526
7 changed files with 115 additions and 68 deletions
+25 -9
View File
@@ -1,12 +1,28 @@
variable "aws-region" {}
variable "aws-region-short" {}
variable "customer-name" {}
variable "environment" {}
variable "project" {}
variable "application" {}
variable "eks_master_user_arn" {}
variable "aws-region" {
description = "AWS region"
type = string
}
variable "customer-name" {
description = "Owner of application"
type = string
}
variable "environment" {
description = "Name of environment (i.e. Prod/Lab)"
type = string
}
variable "project" {
description = "Name of project"
type = string
}
variable "application" {
description = "Name of application"
type = string
}
variable "eks_master_user_arn" {
description = "EKS administrator ARN which will be added to access entry"
type = string
}
variable "eks_cluster_name" {
type = string
default = "xpk-eks01"
default = "acme-eks01"
}