File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ project adheres to [Semantic Versioning](http://semver.org/).
18
18
- Add ` default_cooldown ` and ` health_check_grace_period ` options to workers ASG (by @ArieLevs )
19
19
- Fix support for ASG max instance lifetime for workers (by @barryib )
20
20
- Add support for envelope encryption of Secrets (by @babilen5 )
21
+ - Fix issue with terraform plan phase when IRSA was enabled and create_eks switches to false (by @daroga0002 )
21
22
- ** Breaking:** Added support for EKS 1.15 (by @sc250024 )
22
23
23
24
# History
Original file line number Diff line number Diff line change 8
8
# https://github.com/terraform-providers/terraform-provider-aws/issues/10104
9
9
10
10
resource "aws_iam_openid_connect_provider" "oidc_provider" {
11
- count = var. enable_irsa ? 1 : 0
11
+ count = var. enable_irsa && var . create_eks ? 1 : 0
12
12
client_id_list = [" sts.amazonaws.com" ]
13
13
thumbprint_list = [var . eks_oidc_root_ca_thumbprint ]
14
14
url = flatten (concat (aws_eks_cluster. this [* ]. identity [* ]. oidc . 0 . issuer , [" " ]))[0 ]
You can’t perform that action at this time.
0 commit comments