forked from neilmartin83/terraform-jamfpro-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
54 lines (46 loc) · 1.6 KB
/
Copy pathvariables.tf
File metadata and controls
54 lines (46 loc) · 1.6 KB
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
53
54
variable "jamfplatform_base_url" {
description = "The base URL for the Jamf Platform API. Example: https://us.apigw.jamf.com"
type = string
sensitive = true
default = null
}
variable "jamfplatform_client_id" {
description = "The Jamf Platform Client ID for authentication."
type = string
sensitive = true
default = null
}
variable "jamfplatform_client_secret" {
description = "The Jamf Platform Client secret for authentication."
type = string
sensitive = true
default = null
}
variable "jamfpro_instance_fqdn" {
description = "The Jamf Pro FQDN (fully qualified domain name). Example: https://mycompany.jamfcloud.com"
type = string
sensitive = true
default = null
}
variable "jamfpro_client_id" {
description = "The Jamf Pro Client ID for authentication when auth_method is 'oauth2'."
type = string
sensitive = true
default = null
}
variable "jamfpro_client_secret" {
description = "The Jamf Pro Client secret for authentication when auth_method is 'oauth2'."
type = string
sensitive = true
default = null
}
variable "automated_device_enrollment_token" {
type = string
description = "Automated Device Enrollment Token content (cat /path/to/token | pbcopy). If not provided, no Automated Device Enrollment will be created."
default = null
}
variable "volume_purchasing_service_token" {
type = string
description = "Volume Purchasing Service Token content (cat /path/to/token | pbcopy). If not provided, no Volume Purchasing Location will be created."
default = null
}