Difference between revisions of "Aws ec2 instance state"

From wikieduonline
Jump to navigation Jump to search
(Created page with " {{aws_instance}}")
 
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
  
  
 +
<pre>
 +
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"]
 +
  }
  
{{aws_instance}}
+
  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"
 +
}
 +
</pre>
 +
 
 +
 
 +
== 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: