Skip to content

Commit

Permalink
Merge pull request #533 from JesseHoch/update-tfc-backend
Browse files Browse the repository at this point in the history
test
  • Loading branch information
JesseHoch committed Apr 10, 2024
2 parents b94ea00 + 3c04353 commit 7b9e4c1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "3.26.0"
version = "5.44.0"
}
random = {
source = "hashicorp/random"
version = "3.0.1"
version = "3.6.0"
}
}
required_version = "~> 1.0"

backend "remote" {
organization = "REPLACE_ME"
organization = "ACG-Terrform-Demos78"

workspaces {
name = "REPLACE_ME"
name = "demo-github-actions"
}
}
}
Expand All @@ -31,7 +31,7 @@ resource "random_pet" "sg" {}

resource "aws_instance" "web" {
ami = "ami-09e67e426f25ce0d7"
instance_type = "t2.micro"
instance_type = "t3.micro"
vpc_security_group_ids = [aws_security_group.web-sg.id]

user_data = <<-EOF
Expand Down

0 comments on commit 7b9e4c1

Please sign in to comment.