Finish lab 3

This commit is contained in:
2025-06-16 18:48:28 -07:00
parent 134b13f5cc
commit d1e7574cf9
2 changed files with 155 additions and 0 deletions

View File

@ -0,0 +1,20 @@
provider "aws" {
region = "us-east-2"
}
variable "EC2_INSTANCE_ID" {
description = "ID of the EC2 instance"
type = string
}
variable "ASSUME_ROLE_POLICY" {
type = string
}
variable "EC2_POLICY" {
type = string
}
variable "ACCOUNT_ROOT_ARN" {
type = string
}