From 7cd9332ca83556612ad2ee62d53e8accf00a5f21 Mon Sep 17 00:00:00 2001 From: Michael O'Brien Date: Wed, 28 Aug 2024 22:10:22 -0400 Subject: [PATCH] #15 - aws template --- aws/main.tf | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 aws/main.tf diff --git a/aws/main.tf b/aws/main.tf new file mode 100644 index 0000000..305a76e --- /dev/null +++ b/aws/main.tf @@ -0,0 +1,10 @@ +# Configure the AWS provider +provider "aws" { + region = "eu-west-1" +} + +# Create an EC2 instance +resource "aws_instance" "example" { + ami = "ami-785db401" + instance_type = "t2.micro" +}