Skip to content

Commit

Permalink
update examples
Browse files Browse the repository at this point in the history
  • Loading branch information
npalm committed Oct 3, 2023
1 parent bcc8101 commit 6cf9916
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 6 deletions.
20 changes: 20 additions & 0 deletions examples/default/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion examples/default/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ module "runners" {
}

module "webhook-github-app" {
source = "../../modules/webhook-github-app"
source = "../../modules/webhook-github-app"
depends_on = [module.runners]

github_app = {
key_base64 = var.github_app.key_base64
Expand Down
3 changes: 2 additions & 1 deletion examples/ephemeral/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ module "runners" {
}

module "webhook-github-app" {
source = "../../modules/webhook-github-app"
source = "../../modules/webhook-github-app"
depends_on = [module.runners]

github_app = {
key_base64 = var.github_app.key_base64
Expand Down
3 changes: 2 additions & 1 deletion examples/multi-runner/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ module "multi-runner" {
}

module "webhook-github-app" {
source = "../../modules/webhook-github-app"
source = "../../modules/webhook-github-app"
depends_on = [module.multi-runner]

github_app = {
key_base64 = var.github_app.key_base64
Expand Down
3 changes: 2 additions & 1 deletion examples/prebuilt/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ module "runners" {
}

module "webhook-github-app" {
source = "../../modules/webhook-github-app"
source = "../../modules/webhook-github-app"
depends_on = [module.runners]

github_app = {
key_base64 = var.github_app.key_base64
Expand Down
3 changes: 2 additions & 1 deletion examples/ubuntu/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ module "base" {
}

module "runners" {
source = "../../"
source = "../../"
depends_on = [module.runners]

aws_region = local.aws_region
vpc_id = module.base.vpc.vpc_id
Expand Down
3 changes: 2 additions & 1 deletion examples/windows/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ module "runners" {
}

module "webhook-github-app" {
source = "../../modules/webhook-github-app"
source = "../../modules/webhook-github-app"
depends_on = [module.runners]

github_app = {
key_base64 = var.github_app.key_base64
Expand Down

0 comments on commit 6cf9916

Please sign in to comment.