terraform/eks/daemon/fluent/common/variables.tf (31 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"
}
// ami_type and instance_type can be used to test ARM node group
variable "ami_type" {
type = string
default = "AL2_x86_64"
}
variable "instance_type" {
type = string
default = "t3a.medium"
}