Skip to content

Commit 693eca4

Browse files
authored
Move metadata bucket to shared secrets (#42)
* Move metadata bucket to shared secrets * ci: bump setup-opentofu to v2 and add Dependabot The action's v1 still runs on the Node 16 runtime, which GitHub keeps warning about. v2 moved to Node 20 with no behavioral changes for how we use it (init/fmt/validate). Dependabot is configured with grouped weekly updates so we get one PR per ecosystem rather than a flood of individual bumps.
1 parent b87aa08 commit 693eca4

3 files changed

Lines changed: 39 additions & 2 deletions

File tree

.github/dependabot.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: github-actions
4+
directory: /
5+
schedule:
6+
interval: weekly
7+
groups:
8+
all:
9+
patterns:
10+
- "*"
11+
12+
- package-ecosystem: terraform
13+
directory: /
14+
schedule:
15+
interval: weekly
16+
groups:
17+
all:
18+
patterns:
19+
- "*"
20+
21+
- package-ecosystem: terraform
22+
directory: /examples/simple
23+
schedule:
24+
interval: weekly
25+
groups:
26+
all:
27+
patterns:
28+
- "*"
29+
30+
- package-ecosystem: terraform
31+
directory: /examples/with-vcs-gateway
32+
schedule:
33+
interval: weekly
34+
groups:
35+
all:
36+
patterns:
37+
- "*"

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
uses: actions/checkout@main
1313

1414
- name: Setup OpenTofu
15-
uses: opentofu/setup-opentofu@v1
15+
uses: opentofu/setup-opentofu@v2
1616

1717
- name: OpenTofu fmt
1818
run: tofu fmt -recursive -diff -check

templates/kubernetes-secrets.tftpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ stringData:
1515
OBJECT_STORAGE_TYPE: "gcp"
1616
OBJECT_STORAGE_BUCKET_DELIVERIES: "${OBJECT_STORAGE_BUCKET_DELIVERIES}"
1717
OBJECT_STORAGE_BUCKET_LARGE_QUEUE_MESSAGES: "${OBJECT_STORAGE_BUCKET_LARGE_QUEUE_MESSAGES}"
18+
OBJECT_STORAGE_BUCKET_METADATA: "${OBJECT_STORAGE_BUCKET_METADATA}"
1819
OBJECT_STORAGE_BUCKET_MODULES: "${OBJECT_STORAGE_BUCKET_MODULES}"
1920
OBJECT_STORAGE_BUCKET_POLICY_INPUTS: "${OBJECT_STORAGE_BUCKET_POLICY_INPUTS}"
2021
OBJECT_STORAGE_BUCKET_RUN_LOGS: "${OBJECT_STORAGE_BUCKET_RUN_LOGS}"
@@ -52,4 +53,3 @@ type: Opaque
5253
stringData:
5354
LAUNCHER_IMAGE: "${LAUNCHER_IMAGE}"
5455
LAUNCHER_IMAGE_TAG: "${LAUNCHER_IMAGE_TAG}"
55-
OBJECT_STORAGE_BUCKET_METADATA: "${OBJECT_STORAGE_BUCKET_METADATA}"

0 commit comments

Comments
 (0)