forked from oliviambrown/okta-dev-terraform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgroups.tf
36 lines (28 loc) · 869 Bytes
/
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
resource "okta_group" "survey_corps" {
name = "Survey Corps"
description = "The Titan Fighters, Explorers"
}
resource "okta_group" "military_police" {
name = "Military Police"
description = "Personal Guards, Inner wall police"
}
resource "okta_group" "garrison_regiment" {
name = "Garrison Regiment"
description = "Guards and maintains walls"
}
resource "okta_group" "jaegerists" {
name = "Jaegerists"
description = "Rebel Faction"
}
resource "okta_group" "marleyan_military" {
name = "Marleyan Military"
description = "Comboed Armed forces of Marley"
}
resource "okta_group" "warriors" {
name = "Warriors"
description = "Special Marleyan Unit containing Subjects of Ymir"
}
resource "okta_group" "marley_public_security" {
name = "Marley Public Security"
description = "Maintains order in Liberio"
}