Created
June 4, 2022 03:37
-
-
Save cromyhector/b17559f0be9cf8c8e15bb3de2a029c9a 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
### --- ec2/providers.tf --- | |
resource "aws_instance" "app_server" { | |
ami = var.ami | |
instance_type = var.instance_type | |
tags = { | |
Name = var.tag_name | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment