Skip to content

Commit

Permalink
tf format example
Browse files Browse the repository at this point in the history
  • Loading branch information
paivagustavo committed Jan 2, 2024
1 parent cb545d3 commit 5fdb3a1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/resources/lightstep_saml_group_mappings/resource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ resource "lightstep_saml_group_mappings" "group_mappings" {
# For users with the "member_of: sre" SAML Attribute,
# Assign "Organization Editor" in the organization.
match {
attribute_key = "member_of"
attribute_key = "member_of"
attribute_value = "sre"
}
roles {
Expand All @@ -17,13 +17,13 @@ resource "lightstep_saml_group_mappings" "group_mappings" {
# Assign "Project Viewer" in the "Project A" project.

match {
attribute_key = "member_of"
attribute_key = "member_of"
attribute_value = "developer"
}
roles {
organization_role = "Organization Restricted Member"
project_roles = {
"Project A" = "Project Viewer"
"Project A" = "Project Viewer"
}
}
}
Expand Down

0 comments on commit 5fdb3a1

Please sign in to comment.