Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
ADOT Patch workflow committed Jan 11, 2024
1 parent c80950f commit addfebe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/appsignals-e2e-ec2-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
distribution: temurin

- uses: actions/download-artifact@v3
if: ${{ github.event.inputs.caller-workflow-name == 'mainss-build' }}
if: ${{ github.event.inputs.caller-workflow-name == 'main-build' }}
with:
name: ${{ inputs.appsignals-adot-jar }}

Expand Down
4 changes: 2 additions & 2 deletions testing/terraform/ec2/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ data "aws_ami" "ami" {
}

resource "aws_instance" "main_service_instance" {
ami = data.aws_ami.ami.id # Amazon Linux 2 (free tier)
ami = "ami-007833f69c401b453" # Amazon Linux 2 (free tier)
instance_type = "t2.micro"
key_name = local.ssh_key_name
iam_instance_profile = "APP_SIGNALS_EC2_TEST_ROLE"
Expand Down Expand Up @@ -116,7 +116,7 @@ resource "null_resource" "main_service_setup" {
}

resource "aws_instance" "remote_service_instance" {
ami = data.aws_ami.ami.id # Amazon Linux 2 (free tier)
ami = "ami-007833f69c401b453" # Amazon Linux 2 (free tier)
instance_type = "t2.micro"
key_name = local.ssh_key_name
iam_instance_profile = "APP_SIGNALS_EC2_TEST_ROLE"
Expand Down

0 comments on commit addfebe

Please sign in to comment.