Mode:
Duration:
1
2
3
4
5
6
7
8
9
10
11
12
# terraform/demo.tf
provider "aws" {
region = "us-east-1"
}
resource "aws_instance" "example" {
ami = "ami-0c55b159cbfafe1f0"
instance_type = "t2.micro"
tags = {
Name = "ExampleInstance"
}
}Coding works best on desktop or with an external keyboard.