Skip to content

Commit bc1174d

Browse files
committed
release: edge.24-12-11
1 parent bb09486 commit bc1174d

File tree

185 files changed

+828
-653
lines changed

Some content is hidden

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

185 files changed

+828
-653
lines changed

packages/nix/packages/scripts/files/terragrunt/panfactum.hcl

-1
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,6 @@ remote_state {
302302
################################################################
303303

304304
terraform_version_constraint = "~> 1.8"
305-
terragrunt_version_constraint = "~> 0.69"
306305
terraform_binary = "tofu"
307306

308307
retryable_errors = local.is_ci ? [".*"] : [

packages/reference/environments/panfactum.hcl

-1
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,6 @@ remote_state {
302302
################################################################
303303

304304
terraform_version_constraint = "~> 1.8"
305-
terragrunt_version_constraint = "~> 0.69"
306305
terraform_binary = "tofu"
307306

308307
retryable_errors = local.is_ci ? [".*"] : [

packages/reference/flake.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/website/src/app/changelog/edge/page.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Learn more [here](/docs/edge/guides/versioning/releases).*
1111

1212
{/* lint disable no-duplicate-headings */}
1313

14-
## Unreleased
14+
## edge.24-12-11
1515

1616
### Breaking Changes
1717

packages/website/src/app/docs/edge/guides/iac/first-party-modules/page.mdx

+24-8
Original file line numberDiff line numberDiff line change
@@ -198,14 +198,30 @@ Our Terragrunt configuration automatically takes care of passing in the appropri
198198
and `pf_module_ref`. Whenever you change the `pf_stack_version` [Terragrunt variable](/docs/edge/reference/configuration/terragrunt-variables#module-source), these variables will
199199
automatically update.
200200

201-
<MarkdownAlert severity="warning">
202-
If you are [using a local copy of the Panfactum submodules](/docs/edge/guides/iac/deploying-modules#using-a-local-copy-of-panfactum-modules),
203-
`pf_module_source` will be a relative path. Unlike absolute paths, [relative paths provide performance improvements and automatic updates.](https://opentofu.org/docs/language/modules/sources/#local-paths)
204-
However, the relative path cannot always be used such as from within nested folders inside your modules.
205-
206-
You can use absolute paths instead
207-
by setting the `pf_stack_local_use_relative` [Terragrunt variable](/docs/edge/reference/configuration/terragrunt-variables#module-source) to `false`.
208-
However, this will force you to re-init any time you change the local Panfactum module code.
201+
Finally, if you are using Panfactum submodules, your IaC provider version constraints must be set to a specific value
202+
for each provider. For the full list of provider version values, see the [reference docs](/docs/edge/reference/infrastructure-modules/overview#provider-versions).
203+
204+
Unfortunately, these must be set manually. For example:
205+
206+
```hcl
207+
terraform {
208+
required_providers {
209+
kubernetes = {
210+
source = "hashicorp/kubernetes"
211+
version = "2.34.0"
212+
}
213+
}
214+
}
215+
```
216+
217+
<MarkdownAlert severity="info">
218+
If you are [using a local copy of the Panfactum submodules](/docs/edge/guides/iac/deploying-modules#using-a-local-copy-of-panfactum-modules),
219+
`pf_module_source` will be a relative path. Unlike absolute paths, [relative paths provide performance improvements and automatic updates.](https://opentofu.org/docs/language/modules/sources/#local-paths)
220+
However, the relative path cannot always be used such as from within nested folders inside your modules.
221+
222+
You can use absolute paths instead
223+
by setting the `pf_stack_local_use_relative` [Terragrunt variable](/docs/edge/reference/configuration/terragrunt-variables#module-source) to `false`.
224+
However, this will force you to re-init any time you change the local Panfactum module code.
209225
</MarkdownAlert>
210226

211227
### Using First-Party Submodules

packages/website/src/app/docs/edge/reference/infrastructure-modules/direct/authentik/authentik_aws_sso/page.mdx

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ import ModuleHeader from "../../../ModuleHeader";
1212

1313
The following providers are needed by this module:
1414

15-
* [authentik](https://registry.terraform.io/providers/goauthentik/authentik/2024.2.0/docs) (2024.2.0)
15+
* [authentik](https://registry.terraform.io/providers/goauthentik/authentik/2024.6.1/docs) (2024.6.1)
1616

17-
* [kubectl](https://registry.terraform.io/providers/alekc/kubectl/2.0.4/docs) (2.0.4)
17+
* [kubectl](https://registry.terraform.io/providers/alekc/kubectl/2.1.3/docs) (2.1.3)
1818

19-
* [kubernetes](https://registry.terraform.io/providers/hashicorp/kubernetes/2.27.0/docs) (2.27.0)
19+
* [kubernetes](https://registry.terraform.io/providers/hashicorp/kubernetes/2.34.0/docs) (2.34.0)
2020

21-
* [random](https://registry.terraform.io/providers/hashicorp/random/3.6.0/docs) (3.6.0)
21+
* [random](https://registry.terraform.io/providers/hashicorp/random/3.6.3/docs) (3.6.3)
2222

23-
* [tls](https://registry.terraform.io/providers/hashicorp/tls/4.0.5/docs) (4.0.5)
23+
* [tls](https://registry.terraform.io/providers/hashicorp/tls/4.0.6/docs) (4.0.6)
2424

2525
## Required Inputs
2626

packages/website/src/app/docs/edge/reference/infrastructure-modules/direct/authentik/authentik_core_resources/page.mdx

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ import ModuleHeader from "../../../ModuleHeader";
1212

1313
The following providers are needed by this module:
1414

15-
* [authentik](https://registry.terraform.io/providers/goauthentik/authentik/2024.2.0/docs) (2024.2.0)
15+
* [authentik](https://registry.terraform.io/providers/goauthentik/authentik/2024.6.1/docs) (2024.6.1)
1616

17-
* [kubectl](https://registry.terraform.io/providers/alekc/kubectl/2.0.4/docs) (2.0.4)
17+
* [kubectl](https://registry.terraform.io/providers/alekc/kubectl/2.1.3/docs) (2.1.3)
1818

19-
* [kubernetes](https://registry.terraform.io/providers/hashicorp/kubernetes/2.27.0/docs) (2.27.0)
19+
* [kubernetes](https://registry.terraform.io/providers/hashicorp/kubernetes/2.34.0/docs) (2.34.0)
2020

21-
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.3/docs) (0.0.3)
21+
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.4/docs) (0.0.4)
2222

2323
* [time](https://registry.terraform.io/providers/hashicorp/time/0.10.0/docs) (0.10.0)
2424

packages/website/src/app/docs/edge/reference/infrastructure-modules/direct/authentik/authentik_vault_sso/page.mdx

+6-6
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ import ModuleHeader from "../../../ModuleHeader";
1212

1313
The following providers are needed by this module:
1414

15-
* [authentik](https://registry.terraform.io/providers/goauthentik/authentik/2024.2.0/docs) (2024.2.0)
15+
* [authentik](https://registry.terraform.io/providers/goauthentik/authentik/2024.6.1/docs) (2024.6.1)
1616

17-
* [kubectl](https://registry.terraform.io/providers/alekc/kubectl/2.0.4/docs) (2.0.4)
17+
* [kubectl](https://registry.terraform.io/providers/alekc/kubectl/2.1.3/docs) (2.1.3)
1818

19-
* [kubernetes](https://registry.terraform.io/providers/hashicorp/kubernetes/2.27.0/docs) (2.27.0)
19+
* [kubernetes](https://registry.terraform.io/providers/hashicorp/kubernetes/2.34.0/docs) (2.34.0)
2020

21-
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.3/docs) (0.0.3)
21+
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.4/docs) (0.0.4)
2222

23-
* [random](https://registry.terraform.io/providers/hashicorp/random/3.6.0/docs) (3.6.0)
23+
* [random](https://registry.terraform.io/providers/hashicorp/random/3.6.3/docs) (3.6.3)
2424

25-
* [tls](https://registry.terraform.io/providers/hashicorp/tls/4.0.5/docs) (4.0.5)
25+
* [tls](https://registry.terraform.io/providers/hashicorp/tls/4.0.6/docs) (4.0.6)
2626

2727
## Required Inputs
2828

packages/website/src/app/docs/edge/reference/infrastructure-modules/direct/authentik/authentik_zoho_sso/page.mdx

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ import ModuleHeader from "../../../ModuleHeader";
1212

1313
The following providers are needed by this module:
1414

15-
* [authentik](https://registry.terraform.io/providers/goauthentik/authentik/2024.2.0/docs) (2024.2.0)
15+
* [authentik](https://registry.terraform.io/providers/goauthentik/authentik/2024.6.1/docs) (2024.6.1)
1616

17-
* [kubectl](https://registry.terraform.io/providers/alekc/kubectl/2.0.4/docs) (2.0.4)
17+
* [kubectl](https://registry.terraform.io/providers/alekc/kubectl/2.1.3/docs) (2.1.3)
1818

19-
* [kubernetes](https://registry.terraform.io/providers/hashicorp/kubernetes/2.27.0/docs) (2.27.0)
19+
* [kubernetes](https://registry.terraform.io/providers/hashicorp/kubernetes/2.34.0/docs) (2.34.0)
2020

21-
* [random](https://registry.terraform.io/providers/hashicorp/random/3.6.0/docs) (3.6.0)
21+
* [random](https://registry.terraform.io/providers/hashicorp/random/3.6.3/docs) (3.6.3)
2222

23-
* [tls](https://registry.terraform.io/providers/hashicorp/tls/4.0.5/docs) (4.0.5)
23+
* [tls](https://registry.terraform.io/providers/hashicorp/tls/4.0.6/docs) (4.0.6)
2424

2525
## Required Inputs
2626

packages/website/src/app/docs/edge/reference/infrastructure-modules/direct/aws/aws_account/page.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The following providers are needed by this module:
1818

1919
* [aws](https://registry.terraform.io/providers/hashicorp/aws/5.80.0/docs) (5.80.0)
2020

21-
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.3/docs) (0.0.3)
21+
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.4/docs) (0.0.4)
2222

2323
## Required Inputs
2424

packages/website/src/app/docs/edge/reference/infrastructure-modules/direct/aws/aws_delegated_zones/page.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The following providers are needed by this module:
1414

1515
* [aws](https://registry.terraform.io/providers/hashicorp/aws/5.80.0/docs) (5.80.0)
1616

17-
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.3/docs) (0.0.3)
17+
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.4/docs) (0.0.4)
1818

1919
* [time](https://registry.terraform.io/providers/hashicorp/time/0.10.0/docs) (0.10.0)
2020

packages/website/src/app/docs/edge/reference/infrastructure-modules/direct/aws/aws_dns_records/page.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The following providers are needed by this module:
2222

2323
* [aws](https://registry.terraform.io/providers/hashicorp/aws/5.80.0/docs) (5.80.0)
2424

25-
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.3/docs) (0.0.3)
25+
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.4/docs) (0.0.4)
2626

2727
## Required Inputs
2828

packages/website/src/app/docs/edge/reference/infrastructure-modules/direct/aws/aws_dns_zones/page.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The following providers are needed by this module:
1414

1515
* [aws](https://registry.terraform.io/providers/hashicorp/aws/5.80.0/docs) (5.80.0)
1616

17-
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.3/docs) (0.0.3)
17+
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.4/docs) (0.0.4)
1818

1919
* [time](https://registry.terraform.io/providers/hashicorp/time/0.10.0/docs) (0.10.0)
2020

packages/website/src/app/docs/edge/reference/infrastructure-modules/direct/aws/aws_ecr_public_repos/page.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The following providers are needed by this module:
3232

3333
* [aws](https://registry.terraform.io/providers/hashicorp/aws/5.80.0/docs) (5.80.0)
3434

35-
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.3/docs) (0.0.3)
35+
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.4/docs) (0.0.4)
3636

3737
## Required Inputs
3838

packages/website/src/app/docs/edge/reference/infrastructure-modules/direct/aws/aws_ecr_pull_through_cache/page.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The following providers are needed by this module:
2828

2929
* [aws](https://registry.terraform.io/providers/hashicorp/aws/5.80.0/docs) (5.80.0)
3030

31-
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.3/docs) (0.0.3)
31+
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.4/docs) (0.0.4)
3232

3333
## Required Inputs
3434

packages/website/src/app/docs/edge/reference/infrastructure-modules/direct/aws/aws_ecr_repos/page.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ The following providers are needed by this module:
5757

5858
* [aws](https://registry.terraform.io/providers/hashicorp/aws/5.80.0/docs) (5.80.0)
5959

60-
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.3/docs) (0.0.3)
60+
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.4/docs) (0.0.4)
6161

6262
## Required Inputs
6363

packages/website/src/app/docs/edge/reference/infrastructure-modules/direct/aws/aws_eks/page.mdx

+11-3
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ The following providers are needed by this module:
4444

4545
* [aws](https://registry.terraform.io/providers/hashicorp/aws/5.80.0/docs) (5.80.0)
4646

47-
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.3/docs) (0.0.3)
47+
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.4/docs) (0.0.4)
4848

49-
* [tls](https://registry.terraform.io/providers/hashicorp/tls/4.0.5/docs) (4.0.5)
49+
* [tls](https://registry.terraform.io/providers/hashicorp/tls/4.0.6/docs) (4.0.6)
5050

5151
## Required Inputs
5252

@@ -160,7 +160,15 @@ Description: Desired Kubernetes version to use for all subsystems. Use only majo
160160

161161
Type: `string`
162162

163-
Default: `"1.29"`
163+
Default: `"1.30"`
164+
165+
### node\_ebs\_volume\_size\_gb
166+
167+
Description: The size of the EBS volume in GiB to use for each node.
168+
169+
Type: `number`
170+
171+
Default: `40`
164172

165173
### node\_security\_groups
166174

packages/website/src/app/docs/edge/reference/infrastructure-modules/direct/aws/aws_iam_identity_center_permissions/page.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The following providers are needed by this module:
4242

4343
* [aws](https://registry.terraform.io/providers/hashicorp/aws/5.80.0/docs) (5.80.0)
4444

45-
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.3/docs) (0.0.3)
45+
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.4/docs) (0.0.4)
4646

4747
## Required Inputs
4848

packages/website/src/app/docs/edge/reference/infrastructure-modules/direct/aws/aws_registered_domains/page.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The following providers are needed by this module:
1414

1515
* [aws](https://registry.terraform.io/providers/hashicorp/aws/5.80.0/docs) (5.80.0)
1616

17-
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.3/docs) (0.0.3)
17+
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.4/docs) (0.0.4)
1818

1919
* [time](https://registry.terraform.io/providers/hashicorp/time/0.10.0/docs) (0.10.0)
2020

packages/website/src/app/docs/edge/reference/infrastructure-modules/direct/aws/aws_ses_domain/page.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ The following providers are needed by this module:
1616

1717
* [aws](https://registry.terraform.io/providers/hashicorp/aws/5.80.0/docs) (5.80.0)
1818

19-
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.3/docs) (0.0.3)
19+
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.4/docs) (0.0.4)
2020

21-
* [random](https://registry.terraform.io/providers/hashicorp/random/3.6.0/docs) (3.6.0)
21+
* [random](https://registry.terraform.io/providers/hashicorp/random/3.6.3/docs) (3.6.3)
2222

2323
* [time](https://registry.terraform.io/providers/hashicorp/time/0.10.0/docs) (0.10.0)
2424

packages/website/src/app/docs/edge/reference/infrastructure-modules/direct/aws/aws_vpc/page.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The following providers are needed by this module:
3232

3333
* [aws](https://registry.terraform.io/providers/hashicorp/aws/5.80.0/docs) (5.80.0)
3434

35-
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.3/docs) (0.0.3)
35+
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.4/docs) (0.0.4)
3636

3737
## Required Inputs
3838

packages/website/src/app/docs/edge/reference/infrastructure-modules/direct/aws/tf_bootstrap_resources/page.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The following providers are needed by this module:
2828

2929
* [aws](https://registry.terraform.io/providers/hashicorp/aws/5.80.0/docs) (5.80.0)
3030

31-
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.3/docs) (0.0.3)
31+
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.4/docs) (0.0.4)
3232

3333
## Required Inputs
3434

packages/website/src/app/docs/edge/reference/infrastructure-modules/direct/example/test_kube_pg_cluster/page.mdx

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ The following providers are needed by this module:
1616

1717
* [aws](https://registry.terraform.io/providers/hashicorp/aws/5.80.0/docs) (5.80.0)
1818

19-
* [kubectl](https://registry.terraform.io/providers/alekc/kubectl/2.0.4/docs) (2.0.4)
19+
* [kubectl](https://registry.terraform.io/providers/alekc/kubectl/2.1.3/docs) (2.1.3)
2020

21-
* [kubernetes](https://registry.terraform.io/providers/hashicorp/kubernetes/2.27.0/docs) (2.27.0)
21+
* [kubernetes](https://registry.terraform.io/providers/hashicorp/kubernetes/2.34.0/docs) (2.34.0)
2222

23-
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.3/docs) (0.0.3)
23+
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.4/docs) (0.0.4)
2424

25-
* [random](https://registry.terraform.io/providers/hashicorp/random/3.6.0/docs) (3.6.0)
25+
* [random](https://registry.terraform.io/providers/hashicorp/random/3.6.3/docs) (3.6.3)
2626

2727
* [time](https://registry.terraform.io/providers/hashicorp/time/0.10.0/docs) (0.10.0)
2828

packages/website/src/app/docs/edge/reference/infrastructure-modules/direct/kubernetes/kube_alloy/page.mdx

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ The following providers are needed by this module:
1717

1818
* [helm](https://registry.terraform.io/providers/hashicorp/helm/2.12.1/docs) (2.12.1)
1919

20-
* [kubectl](https://registry.terraform.io/providers/alekc/kubectl/2.0.4/docs) (2.0.4)
20+
* [kubectl](https://registry.terraform.io/providers/alekc/kubectl/2.1.3/docs) (2.1.3)
2121

22-
* [kubernetes](https://registry.terraform.io/providers/hashicorp/kubernetes/2.27.0/docs) (2.27.0)
22+
* [kubernetes](https://registry.terraform.io/providers/hashicorp/kubernetes/2.34.0/docs) (2.34.0)
2323

24-
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.3/docs) (0.0.3)
24+
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.4/docs) (0.0.4)
2525

26-
* [random](https://registry.terraform.io/providers/hashicorp/random/3.6.0/docs) (3.6.0)
26+
* [random](https://registry.terraform.io/providers/hashicorp/random/3.6.3/docs) (3.6.3)
2727

2828
## Required Inputs
2929

packages/website/src/app/docs/edge/reference/infrastructure-modules/direct/kubernetes/kube_argo/page.mdx

+6-6
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ The following providers are needed by this module:
1414

1515
* [helm](https://registry.terraform.io/providers/hashicorp/helm/2.12.1/docs) (2.12.1)
1616

17-
* [kubectl](https://registry.terraform.io/providers/alekc/kubectl/2.0.4/docs) (2.0.4)
17+
* [kubectl](https://registry.terraform.io/providers/alekc/kubectl/2.1.3/docs) (2.1.3)
1818

19-
* [kubernetes](https://registry.terraform.io/providers/hashicorp/kubernetes/2.27.0/docs) (2.27.0)
19+
* [kubernetes](https://registry.terraform.io/providers/hashicorp/kubernetes/2.34.0/docs) (2.34.0)
2020

21-
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.3/docs) (0.0.3)
21+
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.4/docs) (0.0.4)
2222

23-
* [random](https://registry.terraform.io/providers/hashicorp/random/3.6.0/docs) (3.6.0)
23+
* [random](https://registry.terraform.io/providers/hashicorp/random/3.6.3/docs) (3.6.3)
2424

2525
* [time](https://registry.terraform.io/providers/hashicorp/time/0.10.0/docs) (0.10.0)
2626

@@ -58,15 +58,15 @@ Description: The version of the argo events helm chart to deploy
5858

5959
Type: `string`
6060

61-
Default: `"2.4.4"`
61+
Default: `"2.4.9"`
6262

6363
### argo\_workflows\_helm\_version
6464

6565
Description: The version of the argo workflows helm chart to deploy
6666

6767
Type: `string`
6868

69-
Default: `"0.42.5"`
69+
Default: `"0.45.1"`
7070

7171
### aws\_iam\_ip\_allow\_list
7272

packages/website/src/app/docs/edge/reference/infrastructure-modules/direct/kubernetes/kube_authentik/page.mdx

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ The following providers are needed by this module:
1919

2020
* [helm](https://registry.terraform.io/providers/hashicorp/helm/2.12.1/docs) (2.12.1)
2121

22-
* [kubectl](https://registry.terraform.io/providers/alekc/kubectl/2.0.4/docs) (2.0.4)
22+
* [kubectl](https://registry.terraform.io/providers/alekc/kubectl/2.1.3/docs) (2.1.3)
2323

24-
* [kubernetes](https://registry.terraform.io/providers/hashicorp/kubernetes/2.27.0/docs) (2.27.0)
24+
* [kubernetes](https://registry.terraform.io/providers/hashicorp/kubernetes/2.34.0/docs) (2.34.0)
2525

26-
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.3/docs) (0.0.3)
26+
* [pf](https://registry.terraform.io/providers/panfactum/pf/0.0.4/docs) (0.0.4)
2727

28-
* [random](https://registry.terraform.io/providers/hashicorp/random/3.6.0/docs) (3.6.0)
28+
* [random](https://registry.terraform.io/providers/hashicorp/random/3.6.3/docs) (3.6.3)
2929

3030
* [vault](https://registry.terraform.io/providers/hashicorp/vault/4.5.0/docs) (4.5.0)
3131

@@ -79,7 +79,7 @@ Description: The version of the Authentik helm chart to deploy
7979

8080
Type: `string`
8181

82-
Default: `"2024.4.2"`
82+
Default: `"2024.6.4"`
8383

8484
### aws\_iam\_ip\_allow\_list
8585

0 commit comments

Comments
 (0)