Skip to content

Instantly share code, notes, and snippets.

@cromyhector
Created June 4, 2022 03:37
Show Gist options
  • Save cromyhector/b17559f0be9cf8c8e15bb3de2a029c9a to your computer and use it in GitHub Desktop.
Save cromyhector/b17559f0be9cf8c8e15bb3de2a029c9a to your computer and use it in GitHub Desktop.
### --- 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