-
Notifications
You must be signed in to change notification settings - Fork 0
/
msft-365-variables.tf
60 lines (50 loc) · 2.17 KB
/
msft-365-variables.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
variable "msft_tenant_id" {
type = string
description = "ID of Microsoft tenant to connect to (req'd only if config includes MSFT connectors)"
default = ""
}
variable "msft_owners_email" {
type = set(string)
description = "(Only if config includes MSFT connectors). Optionally, set of emails to apply as owners on AAD apps apart from current logged user. Ignored if `existing_app_object_id` provided."
default = []
}
variable "msft_connector_app_object_id" {
type = string
description = "BETA; if provided, the app corresponding to this object id will be used instead of creating new ones per source. User must ensure that roles/scopes are appropriate for the connector"
default = null
}
variable "example_msft_user_guid" {
type = string
description = "example MSFT user guid (uuid) for test API calls (OPTIONAL)"
default = "{EXAMPLE_MSFT_USER_GUID}"
}
variable "msft_teams_example_team_guid" {
type = string
description = "example of MSFT Id (GUID) of a Teams Team for test API calls (OPTIONAL)"
default = "{EXAMPLE_MSFT_TEAMS_TEAM_GUID}"
}
variable "msft_teams_example_channel_guid" {
type = string
description = "example of MSFT Id (GUID) of a Teams Channel for test API calls (OPTIONAL)"
default = "{EXAMPLE_MSFT_TEAMS_CHANNEL_GUID}"
}
variable "msft_teams_example_chat_guid" {
type = string
description = "example of MSFT Id (GUID) of a Teams Chat for test API calls (OPTIONAL)"
default = "{EXAMPLE_MSFT_TEAMS_CHAT_GUID}"
}
variable "msft_teams_example_call_guid" {
type = string
description = "example of MSFT Id (GUID) of a Teams Call for test API calls (OPTIONAL)"
default = "{EXAMPLE_MSFT_TEAMS_CALL_GUID}"
}
variable "msft_teams_example_call_record_guid" {
type = string
description = "example of MSFT Id (GUID) of a Teams Call Record for test API calls (OPTIONAL)"
default = "{EXAMPLE_MSFT_TEAMS_CALL_RECORD_GUID}"
}
variable "msft_teams_example_online_meeting_join_url" {
type = string
description = "example of an URL to join into an OnlineMeeting for test API calls (OPTIONAL)"
default = "{EXAMPLE_MSFT_TEAMS_ONLINE_MEETING_URL}"
}