terraform/eks/daemon/fluent/windows/2019/variables.tf (38 lines of code) (raw):
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: MIT
variable "region" {
type = string
default = "us-west-2"
}
variable "test_dir" {
type = string
default = "./test/metric_value_benchmark"
}
variable "cwagent_image_repo" {
type = string
default = "public.ecr.aws/cloudwatch-agent/cloudwatch-agent"
}
variable "cwagent_image_tag" {
type = string
default = "latest"
}
variable "k8s_version" {
type = string
default = "1.32"
}
variable "ami_type" {
type = string
default = "AL2_x86_64"
}
variable "instance_type" {
type = string
default = "t3a.medium"
}
variable "windows_ami_type" {
type = string
default = "WINDOWS_CORE_2019_x86_64"
}
variable "windows_os_version" {
type = string
default = "2019"
}