forked from okta/terraform-provider-okta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbasic.tf
35 lines (31 loc) · 914 Bytes
/
basic.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
data "okta_users" "test" {
search {
name = "profile.email"
value = "john_replace_with_uuid"
comparison = "sw"
}
}
resource "okta_user" "test" {
first_name = "TestAcc"
last_name = "Jones"
login = "john_replace_with_uuid@ledzeppelin.com"
email = "john_replace_with_uuid@ledzeppelin.com"
}
resource "okta_user" "test1" {
first_name = "TestAcc"
last_name = "Entwhistle"
login = "john_replace_with_uuid@thewho.com"
email = "john_replace_with_uuid@thewho.com"
}
resource "okta_user" "test2" {
first_name = "TestAcc"
last_name = "Doe"
login = "john_replace_with_uuid@unknown.com"
email = "john_replace_with_uuid@unknown.com"
}
resource "okta_user" "test3" {
first_name = "TestAcc"
last_name = "Astley"
login = "rick_astley_replace_with_uuid@rickrollin.com"
email = "rick_astley_replace_with_uuid@rickrollin.com"
}