Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
harrryr committed Sep 24, 2024
1 parent d04397f commit 5354088
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/java-eks-canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ jobs:
with:
aws-region: ${{ matrix.aws-region }}
test-cluster-name: 'e2e-python-canary-test'
caller-workflow-name: 'appsignals-e2e-eks-canary-test'
caller-workflow-name: 'appsignals-e2e-eks-canary-test'
2 changes: 1 addition & 1 deletion terraform/java/ec2/asg/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ data "aws_ami" "ami" {
}
filter {
name = "architecture"
values = ["x86_64"]
values = [var.cpu_architecture]
}
filter {
name = "image-type"
Expand Down
4 changes: 4 additions & 0 deletions terraform/java/ec2/asg/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,8 @@ variable "get_adot_jar_command" {

variable "canary_type" {
default = "java-ec2-asg"
}

variable "cpu_architecture" {
default = "x86_64"
}

0 comments on commit 5354088

Please sign in to comment.