Skip to content

Commit 9343419

Browse files
authored
feat: initial release (#6)
1 parent 0853f8d commit 9343419

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+6478
-298
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Primary owner should be listed first in list of global owners, followed by any secondary owners
2-
* @SirSpidey @ocofaigh
2+
* @vbontempi @daniel-butler-irl

.github/settings.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ repository:
2525
description: "Synchronizes secrets between Secrets Manager and an IBM Cloud OpenShift cluster"
2626

2727
# Use a comma-separated list of topics to set on the repo (ensure not to use any caps in the topic string).
28-
topics: terraform, ibm-cloud, terraform-module, core-team
28+
topics: terraform, ibm-cloud, terraform-module, core-team, external-secret

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ on:
55
issue_comment:
66
types:
77
- created
8-
98
jobs:
109
call-terraform-ci-pipeline:
1110
uses: terraform-ibm-modules/common-pipeline-assets/.github/workflows/[email protected]

.gitignore

Lines changed: 9 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Local .terraform directories
22
**/.terraform/*
3-
3+
testpod*.*
44
# .tfstate files
55
*.tfstate
66
*.tfstate.*
@@ -40,6 +40,9 @@ terraform.rc
4040
# Ignore .tfsec
4141
.tfsec/
4242

43+
# Ignore brew lock
44+
Brewfile.lock.json
45+
4346
# Ignore Mac files
4447
.DS_Store
4548

@@ -49,25 +52,9 @@ terraform.rc
4952
# Node modules
5053
/node_modules
5154

52-
# Visual Studio Code
53-
.vscode/
54-
55-
### Go ###
56-
# Binaries for programs and plugins
57-
*.exe
58-
*.exe~
59-
*.dll
60-
*.so
61-
*.dylib
55+
testpod*.yaml
56+
precommit.txt
6257

63-
# Test binary, built with `go test -c`
64-
*.test
65-
66-
# Output of the go coverage tool, specifically when used with LiteIDE
67-
*.out
68-
69-
# Dependency directories (remove the comment below to include it)
70-
# vendor/
71-
72-
# Go workspace file
73-
go.work
58+
# VS Code state
59+
.vscode/
60+
*.code-workspace

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
common-dev-assets/module-assets/.pre-commit-config.yaml
1+
./common-dev-assets/module-assets/.pre-commit-config.yaml

.secrets.baseline

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"files": "go.sum|^.secrets.baseline$",
44
"lines": null
55
},
6-
"generated_at": "2023-12-09T06:39:44Z",
6+
"generated_at": "2023-12-11T12:45:00Z",
77
"plugins_used": [
88
{
99
"name": "AWSKeyDetector"

CODEOWNERS

Whitespace-only changes.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
common-dev-assets/module-assets/Makefile
1+
./common-dev-assets/module-assets/Makefile

0 commit comments

Comments
 (0)