Skip to content

Commit c369326

Browse files
committed
Fixed variables.
1 parent 460ee56 commit c369326

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

integration-tests/amazon-cloudwatch-observability/terraform/helm-windows/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ module "basic_components" {
1111

1212
locals {
1313
aws_eks = "aws eks --region ${var.region}"
14-
cluster_name = var.cluster_name != "" ? var.cluster_name : "cwagent-operator-helm-integ"
14+
cluster_name = var.cluster_name != "" ? var.cluster_name : "cwagent-helm-chart-integ"
1515
}
1616

1717
data "aws_eks_cluster_auth" "this" {

integration-tests/amazon-cloudwatch-observability/terraform/helm-windows/variables.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@ variable "region" {
88

99
variable "k8s_version" {
1010
type = string
11-
default = "1.25"
11+
default = "1.29"
1212
}
1313

1414
# eks addon and helm tests are similar
1515
variable "test_dir" {
1616
type = string
17-
default = "../../eks"
17+
default = "../../validator"
1818
}
1919

2020
variable "helm_dir" {
2121
type = string
22-
default = "../../../helm"
22+
default = "../../../../charts/amazon-cloudwatch-observability"
2323
}
2424

2525
variable "kube_dir" {
@@ -29,7 +29,7 @@ variable "kube_dir" {
2929

3030
variable "cluster_name" {
3131
type = string
32-
default = "cwagent-operator-helm-integ"
32+
default = "cwagent-helm-chart-integ"
3333
}
3434

3535
variable "windows_os_version" {

0 commit comments

Comments
 (0)