terraform/common/variables.tf (14 lines of code) (raw):
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: MIT
variable "cwagent_image_repo" {
type = string
default = "public.ecr.aws/cloudwatch-agent/cloudwatch-agent"
}
variable "cwagent_image_tag" {
type = string
default = "latest"
}
variable "vpc_security_group" {
type = string
default = "vpc_security_group"
}