generated from hashicorp/terraform-provider-scaffolding
-
Notifications
You must be signed in to change notification settings - Fork 56
Open
Labels
Description
When running via 0.37.6 all users are dropped from the harness_platform_usergroup when using SAML
resource "harness_platform_usergroup" "these" {
for_each = toset(var.teams)
name = each.key
identifier = replace(each.key, "-", "_")
description = "${each.key} SAML linked group"
externally_managed = false
linked_sso_id = var.linked_sso_id
linked_sso_display_name = var.linked_sso_display_name
linked_sso_type = "SAML"
sso_group_id = each.key
sso_group_name = each.key
sso_linked = true
}
Refusing 0.37.6 fixes the issue
harness = {
source = "harness/harness"
version = "~> 0.37.5, !=0.37.6"
}
karolmartyna, beyondit-kj and esticansat