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: CONTRIBUTING.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
-
# Contributing to the AuthZed Cloud API Terraform Provider
1
+
# Contributing to the AuthZed Terraform Provider
2
2
3
-
Thank you for considering contributing to the AuthZed Cloud API Terraform Provider! This document provides guidelines and instructions for contributing.
3
+
Thank you for considering contributing to the AuthZed Terraform Provider! This document provides guidelines and instructions for contributing.
4
4
5
5
## Code of Conduct
6
6
@@ -11,7 +11,7 @@ Please read and follow our [Code of Conduct](CODE_OF_CONDUCT.md).
Retrieves information about a specific permission system in AuthZed.
5
5
---
6
6
7
-
# cloudapi_permission_system
7
+
# authzed_permission_system
8
8
9
9
This data source retrieves information about a specific permission system in your AuthZed account. Permission systems are where you define and store your permission relationships.
10
10
11
11
## Example Usage
12
12
13
13
```terraform
14
-
data "cloudapi_permission_system" "development" {
14
+
data "authzed_permission_system" "development" {
15
15
id = "ps-123456789"
16
16
}
17
17
18
18
output "system_name" {
19
-
value = data.cloudapi_permission_system.development.name
19
+
value = data.authzed_permission_system.development.name
20
20
}
21
21
22
22
output "system_type" {
23
-
value = data.cloudapi_permission_system.development.system_type
23
+
value = data.authzed_permission_system.development.system_type
Lists all permission systems available in your AuthZed account.
5
5
---
6
6
7
-
# cloudapi_permission_systems
7
+
# authzed_permission_systems
8
8
9
9
This data source retrieves information about all permission systems in your AuthZed account. Use this to discover your permission systems and their properties.
10
10
11
11
## Example Usage
12
12
13
13
```terraform
14
-
data "cloudapi_permission_systems" "all" {}
14
+
data "authzed_permission_systems" "all" {}
15
15
16
16
output "all_system_names" {
17
-
value = [for ps in data.cloudapi_permission_systems.all.permission_systems : ps.name]
17
+
value = [for ps in data.authzed_permission_systems.all.permission_systems : ps.name]
18
18
}
19
19
20
20
output "system_count" {
21
-
value = data.cloudapi_permission_systems.all.permission_systems_count
21
+
value = data.authzed_permission_systems.all.permission_systems_count
0 commit comments