Skip to content

Commit

Permalink
Changing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sylviamclaughlin authored Nov 18, 2024
1 parent 1a0533e commit b5a5a00
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 9 deletions.
9 changes: 0 additions & 9 deletions test/init-run-all/init-run-all.tf

This file was deleted.

4 changes: 4 additions & 0 deletions test/init-run-all/provider.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Generated by Terragrunt. Sig: nIlQXj57tbuaRZEa
provider "aws" {
region = "us-canada-1"
}
10 changes: 10 additions & 0 deletions test/init-run-all/terragrunt.hcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Indicate what region to deploy the resources into
generate "provider" {
path = "provider.tf"
if_exists = "overwrite_terragrunt"
contents = <<EOF
provider "aws" {
region = "us-canada-1"
}
EOF
}
7 changes: 7 additions & 0 deletions test/init-run-all/terragrunt.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
resource "random_id" "id" {
byte_length = 8
}

output "id" {
value = random_id.id.hex
}
7 changes: 7 additions & 0 deletions test/terragrunt/terragrunt.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
resource "random_id" "id" {
byte_length = 8
}

output "id" {
value = random_id.id.hex
}

0 comments on commit b5a5a00

Please sign in to comment.