fix: Use the amazon ImageOwnerAlias for worker ami owner instead of owner id (#1038)

This commit is contained in:
Thierno IB. BARRY
2020-10-06 14:26:50 +02:00
committed by GitHub
parent d6f3a4265f
commit 094e363362
2 changed files with 4 additions and 4 deletions

View File

@@ -128,13 +128,13 @@ variable "worker_ami_name_filter_windows" {
variable "worker_ami_owner_id" {
description = "The ID of the owner for the AMI to use for the AWS EKS workers. Valid values are an AWS account ID, 'self' (the current account), or an AWS owner alias (e.g. 'amazon', 'aws-marketplace', 'microsoft')."
type = string
default = "602401143452" // The ID of the owner of the official AWS EKS AMIs.
default = "amazon"
}
variable "worker_ami_owner_id_windows" {
description = "The ID of the owner for the AMI to use for the AWS EKS Windows workers. Valid values are an AWS account ID, 'self' (the current account), or an AWS owner alias (e.g. 'amazon', 'aws-marketplace', 'microsoft')."
type = string
default = "801119661308" // The ID of the owner of the official AWS EKS Windows AMIs.
default = "amazon"
}
variable "worker_additional_security_group_ids" {