You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/data-sources/role.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ output "role_by_name" {
45
45
-**all_write_privileges** (Boolean)
46
46
-**apply_to_orgs** (List of String) indicates which orgs this role applies to. By default, it is applied to current org.
47
47
-**description** (String)
48
-
-**privileges** (List of String) Privileges to be assigned to the new role. It has the following structure - `resource:read/write` For example, metaports:read etc.
48
+
-**privileges** (Set of String) Privileges to be assigned to the new role. It has the following structure - `resource:read/write` For example, metaports:read etc.
49
49
-**suborgs_expression** (String) Allows grouping of entities according to their tags. Filtering by tag value is also supported, if provided. Supported operations: AND, OR, XOR, parenthesis.
-**apply_to_orgs** (List of String) indicates which orgs this role applies to. By default, it is applied to current org.
49
49
-**description** (String)
50
-
-**privileges** (List of String) Privileges to be assigned to the new role. It has the following structure - `resource:read/write` For example, metaports:read etc.
50
+
-**privileges** (Set of String) Privileges to be assigned to the new role. It has the following structure - `resource:read/write` For example, metaports:read etc.
51
51
-**suborgs_expression** (String) Allows grouping of entities according to their tags. Filtering by tag value is also supported, if provided. Supported operations: AND, OR, XOR, parenthesis.
Copy file name to clipboardExpand all lines: internal/provider/role/common.go
+24-21Lines changed: 24 additions & 21 deletions
Original file line number
Diff line number
Diff line change
@@ -15,23 +15,35 @@ const (
15
15
subOrgsExpressionDesc="Allows grouping of entities according to their tags. Filtering by tag value is also supported, if provided. Supported operations: AND, OR, XOR, parenthesis."
0 commit comments