diff --git a/hosts/arrow/aws/ec2.tf b/hosts/arrow/aws/ec2.tf index b4019d1..869ecae 100644 --- a/hosts/arrow/aws/ec2.tf +++ b/hosts/arrow/aws/ec2.tf @@ -13,6 +13,11 @@ resource "aws_instance" "instance" { } } +resource "aws_ec2_instance_state" "instance" { + instance_id = aws_instance.instance.id + state = "running" +} + data "aws_vpc" "vpc" { default = true }