Skip to content

Commit 0c4689c

Browse files
committed
chore: Update configurations prior to transfer to use current standards
1 parent f2bc7e3 commit 0c4689c

File tree

6 files changed

+11
-113
lines changed

6 files changed

+11
-113
lines changed

.github/.gitkeep

Whitespace-only changes.

.github/CODEOWNERS

Lines changed: 0 additions & 2 deletions
This file was deleted.

.github/CODE_OF_CONDUCT.md

Lines changed: 0 additions & 76 deletions
This file was deleted.
Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,29 @@
11
name: Release
22

33
on:
4+
workflow_dispatch:
45
push:
56
branches:
67
- main
8+
- master
79
paths:
8-
- '**.tf'
9-
- '!examples/**.tf'
10+
- '**/*.tpl'
11+
- '**/*.py'
12+
- '**/*.tf'
13+
- '.github/workflows/release.yml'
1014

1115
jobs:
1216
release:
1317
name: Release
1418
runs-on: ubuntu-latest
19+
# Skip running release workflow on forks
20+
if: github.repository_owner == 'terraform-aws-modules'
1521
steps:
1622
- name: Checkout
1723
uses: actions/checkout@v3
1824
with:
19-
fetch-depth: 0
2025
persist-credentials: false
21-
22-
- name: Setup Node.js
23-
uses: actions/setup-node@v3
24-
with:
25-
node-version: 16
26+
fetch-depth: 0
2627

2728
- name: Release
2829
uses: cycjimmy/semantic-release-action@v3
@@ -33,4 +34,4 @@ jobs:
3334
@semantic-release/[email protected]
3435
3536
env:
36-
GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE }}
37+
GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE_TOKEN }}

LICENSE

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -174,28 +174,3 @@
174174
of your accepting any such warranty or additional liability.
175175

176176
END OF TERMS AND CONDITIONS
177-
178-
APPENDIX: How to apply the Apache License to your work.
179-
180-
To apply the Apache License to your work, attach the following
181-
boilerplate notice, with the fields enclosed by brackets "[]"
182-
replaced with your own identifying information. (Don't include
183-
the brackets!) The text should be enclosed in the appropriate
184-
comment syntax for the file format. We also recommend that a
185-
file or class name and description of purpose be included on the
186-
same "printed page" as the copyright notice for easier
187-
identification within third-party archives.
188-
189-
Copyright 2022 Clowd Haus, LLC.
190-
191-
Licensed under the Apache License, Version 2.0 (the "License");
192-
you may not use this file except in compliance with the License.
193-
You may obtain a copy of the License at
194-
195-
http://www.apache.org/licenses/LICENSE-2.0
196-
197-
Unless required by applicable law or agreed to in writing, software
198-
distributed under the License is distributed on an "AS IS" BASIS,
199-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200-
See the License for the specific language governing permissions and
201-
limitations under the License.

examples/studio/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ data "aws_availability_zones" "available" {}
66

77
locals {
88
name = replace(basename(path.cwd), "-cluster", "")
9-
region = "us-east-1"
9+
region = "eu-west-1"
1010

1111
vpc_cidr = "10.0.0.0/16"
1212
azs = slice(data.aws_availability_zones.available.names, 0, 3)

0 commit comments

Comments
 (0)