-
Notifications
You must be signed in to change notification settings - Fork 1
/
okta-org-groups.tf
54 lines (40 loc) · 1.26 KB
/
okta-org-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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
resource "okta_group" "survey_corps" {
name = "Team-Survey Corps"
description = "The Titan Fighters, Explorers"
}
resource "okta_group" "military_police" {
name = "Team-Military Police"
description = "Personal Guards, Inner wall police"
}
resource "okta_group" "garrison_regiment" {
name = "Team-Garrison Regiment"
description = "Guards and maintains walls"
}
resource "okta_group" "jaegerists" {
name = "Team-Jaegerists"
description = "Rebel Faction"
}
resource "okta_group" "marleyan_military" {
name = "Team-Marleyan Military"
description = "Comboed armed forces of Marley "
}
resource "okta_group" "warriors" {
name = "Team-Warriors"
description = "Special Marleyan Unit containing Subjects of Ymir"
}
resource "okta_group" "marley_public_security" {
name = "Team-Marley Public Security"
description = "Maintains order in Liberio"
}
resource "okta_group" "Ducks" {
name = "Team-Ducks"
description = "The Might Ducks: we play hockey"
}
resource "okta_group" "spacelift_access" {
name = "App-Spacelift-access"
description = "Spacelift Basic Access"
}
resource "okta_group" "world_travelers" {
name = "Okta-World Travelers"
description = "Travelers who need stricter MFA policies applied."
}