-
Notifications
You must be signed in to change notification settings - Fork 0
/
users.tf
42 lines (40 loc) · 1.35 KB
/
users.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
resource "okta_user" "zane_smith" {
first_name = "Zane"
last_name = "Smith"
login = "[email protected]"
email = "[email protected]"
city = "New York"
cost_center = "10"
country_code = "US"
department = "IT"
display_name = "Dr. John Smith"
division = "Acquisitions"
employee_number = "111111"
honorific_prefix = "Dr."
honorific_suffix = "Jr."
locale = "en_US"
mobile_phone = "1112223333"
nick_name = "Johnny"
organization = "Testing Inc."
postal_address = "1234 Testing St."
preferred_language = "en-us"
primary_phone = "4445556666"
profile_url = "https://www.example.com/profile"
second_email = "[email protected]"
state = "NY"
street_address = "5678 Testing Ave."
timezone = "America/New_York"
title = "Director"
user_type = "Employee"
zip_code = "11111"
}
resource "okta_app_user" "zane_smith_aws_eng_support" {
app_id = okta_app_saml.eng_support_role.id
user_id = okta_user.zane_smith.id
username = "Zane Smith"
}
resource "okta_app_user" "zane_smith_aws_admin_support" {
app_id = okta_app_saml.eng_admin_role.id
user_id = okta_user.zane_smith.id
username = "Zane Smith"
}