Skip to content

Commit

Permalink
corrected instance id and tested locally - all ok
Browse files Browse the repository at this point in the history
  • Loading branch information
proquickly committed Nov 6, 2024
1 parent e454283 commit 0984f09
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/terraform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
Expand Down
4 changes: 2 additions & 2 deletions terraform/main.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
provider "aws" {
region = "us-west-2" # Specify your desired region
region = "us-west-2"
}

resource "aws_instance" "example" {
ami = "ami-0709112b97e5accb1" # Amazon Linux 2 AMI (change as needed)
ami = "ami-0709112b97e5accb1"
instance_type = "t2.micro"

tags = {
Expand Down

0 comments on commit 0984f09

Please sign in to comment.