-
-
Save arun9theja/73c450760f03c893c9c2d8ac49c3af01 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| terraform { | |
| required_providers { | |
| aws = { | |
| source = "hashicorp/aws" | |
| version = "~> 3.27" | |
| } | |
| } | |
| required_version = ">= 0.14.9" | |
| } | |
| provider "aws" { | |
| profile = "default" | |
| region = "us-west-2" | |
| } | |
| module "ec2-module" { | |
| source = "./ec2-module" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment