diff --git a/examples/iam-oidc-provider/README.md b/examples/iam-oidc-provider/README.md index becabaef..df0249b0 100644 --- a/examples/iam-oidc-provider/README.md +++ b/examples/iam-oidc-provider/README.md @@ -26,6 +26,7 @@ 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 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" + } } }