-
Notifications
You must be signed in to change notification settings - Fork 1
/
mongodb-groups.tf
35 lines (32 loc) · 1.1 KB
/
mongodb-groups.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
resource "okta_group" "mongodb_member_project_0" {
name = "App-Atlas-Member-Project 0-Read Only"
description = "MongoDB Atlas Member Project 0 Readonly access"
}
resource "okta_group" "mongodb_billing_viewer" {
name = "App-Atlas-Billing Viewer"
description = "MongoDB Atlas Org Billing Viewer Role"
}
resource "okta_group" "mongodb_owner" {
name = "App-Atlas-Owner"
description = "MongoDB Atlas Org Owner Role"
}
resource "okta_group" "mongodb_project_creator" {
name = "App-Atlas-Project Creator"
description = "MongoDB Atlas Org Project Creator Role"
}
resource "okta_group" "mongodb_billing_admin" {
name = "App-Atlas-Billing Admin"
description = "MongoDB Atlas Org Billing Admin Role"
}
resource "okta_group" "mongodb_read_only" {
name = "App-Atlas-Read Only"
description = "MongoDB Atlas Org Read Only Role"
}
resource "okta_group" "mongodb_member" {
name = "App-Atlas-Member"
description = "MongoDB Atlas Org Member Role"
}
resource "okta_group" "mongodb_access" {
name = "App-Atlas-Access"
description = "MongoDB Atlas Application Assignment/Access"
}