-
Notifications
You must be signed in to change notification settings - Fork 9
/
outputs-automation.tf
39 lines (33 loc) · 1.27 KB
/
outputs-automation.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
###############################
# Azure Automation Account outputs
###############################
output "automation_account_name" {
description = "Azure Automation Account name."
value = one(module.automation_account[*].name)
}
output "automation_account_id" {
description = "Azure Automation Account ID."
value = one(module.automation_account[*].id)
}
output "automation_account_dsc_primary_access_key" {
description = "Azure Automation Account DSC primary access key."
value = one(module.automation_account[*].dsc_primary_access_key)
sensitive = true
}
output "automation_account_dsc_secondary_access_key" {
description = "Azure Automation Account DSC secondary access key."
value = one(module.automation_account[*].dsc_secondary_access_key)
sensitive = true
}
output "automation_account_dsc_server_endpoint" {
description = "Azure Automation Account DSC server endpoint."
value = one(module.automation_account[*].dsc_server_endpoint)
}
output "automation_account_identity" {
description = "Identity block with principal ID and tenant ID."
value = one(module.automation_account[*].identity)
}
output "module_automation" {
description = "Module automation outputs."
value = one(module.automation_account[*])
}