Skip to content

Commit db824d7

Browse files
committed
chore: fix resource tags for multi-runner example
1 parent dd43924 commit db824d7

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

examples/multi-runner/main.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ module "runners" {
5757
id = var.github_app.id
5858
webhook_secret = random_id.random.hex
5959
}
60-
6160
# Assuming local build lambda's to use pre build ones, uncomment the lines below and download the
6261
# lambda zip files lambda_download
6362
# webhook_lambda_zip = "../lambdas-download/webhook.zip"

examples/multi-runner/providers.tf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
11
provider "aws" {
22
region = local.aws_region
3+
4+
default_tags {
5+
tags = {
6+
Example = local.environment
7+
}
8+
}
39
}

0 commit comments

Comments
 (0)