Difference between revisions of "Aws ec2 instance state"
Jump to navigation
Jump to search
Line 34: | Line 34: | ||
+ | == See also == | ||
+ | * {{aws_instance}} | ||
− | + | [[Category:AWS]] |
Latest revision as of 07:28, 24 March 2023
data "aws_ami" "ubuntu" { most_recent = true filter { name = "name" values = ["ubuntu/images/hvm-ssd/ubuntu-focal-20.04-amd64-server-*"] } filter { name = "virtualization-type" values = ["hvm"] } owners = ["099720109477"] # Canonical } resource "aws_instance" "test" { ami = data.aws_ami.ubuntu.id instance_type = "t3.micro" tags = { Name = "HelloWorld" } } resource "aws_ec2_instance_state" "test" { instance_id = aws_instance.test.id state = "stopped" }
See also[edit]
Advertising: