diff --git a/terraform/eks/daemon/windows/2025/main.tf b/terraform/eks/daemon/windows/2025/main.tf deleted file mode 100644 index 38ee4dcb3..000000000 --- a/terraform/eks/daemon/windows/2025/main.tf +++ /dev/null @@ -1,14 +0,0 @@ -// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. -// SPDX-License-Identifier: MIT - -module "windows" { - source = "../" - windows_ami_type = var.windows_ami_type - windows_os_version = var.windows_os_version - test_dir = var.test_dir - ami_type = var.ami_type - instance_type = var.instance_type - k8s_version = var.k8s_version - cwagent_image_repo = var.cwagent_image_repo - cwagent_image_tag = var.cwagent_image_tag -} \ No newline at end of file diff --git a/terraform/eks/daemon/windows/2025/variables.tf b/terraform/eks/daemon/windows/2025/variables.tf deleted file mode 100644 index 5859f76d2..000000000 --- a/terraform/eks/daemon/windows/2025/variables.tf +++ /dev/null @@ -1,47 +0,0 @@ -// 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.24" -} - -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_2025_x86_64" -} - -variable "windows_os_version" { - type = string - default = "2025" -}