Skip to content

Commit 976048e

Browse files
authored
Merge pull request #2071 from philips-labs/develop
Release
2 parents a933cc8 + e2f9a27 commit 976048e

File tree

35 files changed

+164
-93
lines changed

35 files changed

+164
-93
lines changed

.github/workflows/packer-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: "Packer checks"
22
on:
33
push:
44
branches:
5-
- master
5+
- main
66
- develop
77
pull_request:
88
paths:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release build
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77
- develop
88
workflow_dispatch:
99

@@ -75,7 +75,7 @@ jobs:
7575
yarn release -d --repositoryUrl https://x-access-token:[email protected]/$GITHUB_REPOSITORY.git
7676
7777
- name: Release
78-
if: github.event_name != 'pull_request' && contains('refs/heads/master', github.ref)
78+
if: github.event_name != 'pull_request' && contains('refs/heads/main', github.ref)
7979
env:
8080
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
8181
run: |

.github/workflows/terraform.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: "Terraform checks"
22
on:
33
push:
44
branches:
5-
- master
5+
- main
66
- develop
77
pull_request:
88
paths-ignore:

.releaserc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"branches": [
33
{
4-
"name": "master"
4+
"name": "main"
55
},
66
{
77
"name": "develop",

examples/arm64/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ module "runners" {
1919
vpc_id = module.vpc.vpc_id
2020
subnet_ids = module.vpc.private_subnets
2121

22-
environment = local.environment
22+
prefix = local.environment
2323
tags = {
2424
Project = "ProjectX"
2525
}

examples/default/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ module "runners" {
1919
vpc_id = module.vpc.vpc_id
2020
subnet_ids = module.vpc.private_subnets
2121

22-
environment = local.environment
22+
prefix = local.environment
2323
tags = {
2424
Project = "ProjectX"
2525
}

examples/ephemeral/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module "runners" {
1616
vpc_id = module.vpc.vpc_id
1717
subnet_ids = module.vpc.private_subnets
1818

19-
environment = local.environment
19+
prefix = local.environment
2020
tags = {
2121
Project = "ProjectX"
2222
}

examples/permissions-boundary/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ module "runners" {
3535
subnet_ids = module.vpc.private_subnets
3636
kms_key_arn = aws_kms_key.github.key_id
3737

38-
environment = local.environment
38+
prefix = local.environment
3939
tags = {
4040
Project = "ProjectX"
4141
}

examples/prebuilt/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module "runners" {
1515
vpc_id = module.vpc.vpc_id
1616
subnet_ids = module.vpc.private_subnets
1717

18-
environment = local.environment
18+
prefix = local.environment
1919

2020
github_app = {
2121
key_base64 = var.github_app_key_base64

examples/ubuntu/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module "runners" {
1616
vpc_id = module.vpc.vpc_id
1717
subnet_ids = module.vpc.private_subnets
1818

19-
environment = local.environment
19+
prefix = local.environment
2020
tags = {
2121
Project = "ProjectX"
2222
}

0 commit comments

Comments
 (0)