forked from okta/terraform-provider-okta
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathall_attributes.tf
33 lines (33 loc) · 1.15 KB
/
all_attributes.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
resource "okta_user" "test" {
first_name = "TestAcc"
last_name = "Smith"
login = "[email protected]"
email = "[email protected]"
city = "New York"
cost_center = "10"
country_code = "US"
department = "IT"
display_name = "Dr. TestAcc Smith"
division = "Acquisitions"
employee_number = "111111"
honorific_prefix = "Dr."
honorific_suffix = "Jr."
locale = "en_US"
manager = "Jimbo"
manager_id = "222222"
middle_name = "John"
mobile_phone = "1112223333"
nick_name = "Johnny"
organization = "Testing Inc."
postal_address = "1234 Testing St."
preferred_language = "en-us"
primary_phone = "4445556666"
profile_url = "http://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"
}