From 379622978641450bac0bcae6d3042dd7b27d243d Mon Sep 17 00:00:00 2001 From: lanandra Date: Sat, 13 Dec 2025 00:51:08 +0700 Subject: [PATCH 1/2] docs(oidc-provider-example): update requirements and providers section similar to modules --- examples/iam-oidc-provider/README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/examples/iam-oidc-provider/README.md b/examples/iam-oidc-provider/README.md index becabaef..075c8070 100644 --- a/examples/iam-oidc-provider/README.md +++ b/examples/iam-oidc-provider/README.md @@ -26,10 +26,14 @@ Run `terraform destroy` when you don't need these resources. |------|---------| | [terraform](#requirement\_terraform) | >= 1.5.7 | | [aws](#requirement\_aws) | >= 6.0 | +| [tls](#requirement\_tls) | >= 3.0 | ## Providers -No providers. +| Name | Version | +|------|---------| +| [aws](#provider\_aws) | >= 6.0 | +| [tls](#provider\_tls) | >= 3.0 | ## Modules From 6bb778178d62087f67f2f017e5b8b099da1d54bc Mon Sep 17 00:00:00 2001 From: lanandra Date: Sat, 13 Dec 2025 01:24:00 +0700 Subject: [PATCH 2/2] chore(oidc-provider): add tls provider on examples --- examples/iam-oidc-provider/README.md | 5 +---- examples/iam-oidc-provider/versions.tf | 4 ++++ 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/examples/iam-oidc-provider/README.md b/examples/iam-oidc-provider/README.md index 075c8070..df0249b0 100644 --- a/examples/iam-oidc-provider/README.md +++ b/examples/iam-oidc-provider/README.md @@ -30,10 +30,7 @@ Run `terraform destroy` when you don't need these resources. ## Providers -| Name | Version | -|------|---------| -| [aws](#provider\_aws) | >= 6.0 | -| [tls](#provider\_tls) | >= 3.0 | +No providers. ## Modules diff --git a/examples/iam-oidc-provider/versions.tf b/examples/iam-oidc-provider/versions.tf index db13b0a8..c46f0c4f 100644 --- a/examples/iam-oidc-provider/versions.tf +++ b/examples/iam-oidc-provider/versions.tf @@ -6,5 +6,9 @@ terraform { source = "hashicorp/aws" version = ">= 6.0" } + tls = { + source = "hashicorp/tls" + version = ">= 3.0" + } } }