terraform/ecs_fargate/linux/variables.tf (18 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/ecs/ecs_metadata"
}
variable "cwagent_image_repo" {
type = string
default = "public.ecr.aws/cloudwatch-agent/cloudwatch-agent"
}
variable "cwagent_image_tag" {
type = string
default = "latest"
}