Skip to content

Commit

Permalink
feat: setting oidc issuer as default option for aws_eks_identity_prov…
Browse files Browse the repository at this point in the history
…ider_config
  • Loading branch information
igorbrites committed Aug 5, 2022
1 parent 58285f3 commit e05506a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions examples/complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,13 @@ module "eks" {
}
}

# OIDC Identity provider
cluster_identity_providers = {
sts = {
client_id = "sts.amazonaws.com"
}
}

# aws-auth configmap
manage_aws_auth_configmap = true

Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ resource "aws_eks_identity_provider_config" "this" {
groups_claim = lookup(each.value, "groups_claim", null)
groups_prefix = lookup(each.value, "groups_prefix", null)
identity_provider_config_name = try(each.value.identity_provider_config_name, each.key)
issuer_url = each.value.issuer_url
issuer_url = try(each.value.issuer_url, aws_eks_cluster.this[0].identity[0].oidc[0].issuer)
required_claims = lookup(each.value, "required_claims", null)
username_claim = lookup(each.value, "username_claim", null)
username_prefix = lookup(each.value, "username_prefix", null)
Expand Down

0 comments on commit e05506a

Please sign in to comment.