Skip to content

Commit

Permalink
e
Browse files Browse the repository at this point in the history
  • Loading branch information
ehearneRedHat committed Jun 26, 2024
1 parent 7337076 commit 0373458
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ami-self-hosted-runner.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
data "aws_instance" "self_hosted_runner_instance" {
instance_id = aws_instance.self_hosted_runner.id
depends_on = [ aws_instance.self_hosted_runner ]
depends_on = [ null_resource.wait_for_user_data ]
}

resource "aws_ami_from_instance" "self_hosted_runner_ami" {
Expand All @@ -16,5 +16,5 @@ resource "aws_ami_from_instance" "self_hosted_runner_ami" {
prevent_destroy = true
}

depends_on = [ aws_instance.self_hosted_runner ]
depends_on = [ null_resource.wait_for_user_data ]
}

Check failure on line 20 in ami-self-hosted-runner.tf

View workflow job for this annotation

GitHub Actions / EOF Newline

[EOF Newline] ami-self-hosted-runner.tf#L20

Missing newline
Raw output
ami-self-hosted-runner.tf:20: Missing newline

0 comments on commit 0373458

Please sign in to comment.