Skip to content

Commit

Permalink
Fixed comment
Browse files Browse the repository at this point in the history
  • Loading branch information
tuteng committed Jan 2, 2025
1 parent 1169a4e commit 53159bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/aws/volume-access/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ locals {
}

resource "aws_iam_openid_connect_provider" "streamnative_oidc_providers" {
count = var.init_oidc_providers ? length(local.oidc_providers): 0
count = var.init_oidc_providers ? length(local.oidc_providers) : 0
url = "https://${var.oidc_providers[count.index]}"
client_id_list = ["sts.amazonaws.com"]
tags = local.tag_set
Expand Down
2 changes: 1 addition & 1 deletion modules/aws/volume-access/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ variable "oidc_providers" {
}

variable "init_oidc_providers" {
default = true
default = true
description = ""
type = bool
}

0 comments on commit 53159bc

Please sign in to comment.