From 3c043539075db2ff8868fcecfe97266766288907 Mon Sep 17 00:00:00 2001 From: Jess Hoch Date: Wed, 10 Apr 2024 10:59:47 -0400 Subject: [PATCH] test --- main.tf | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/main.tf b/main.tf index e1d1b8045..ff0687aed 100644 --- a/main.tf +++ b/main.tf @@ -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" } } } @@ -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