-
Notifications
You must be signed in to change notification settings - Fork 12
/
output.tf
29 lines (29 loc) · 1.06 KB
/
output.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
output "application_password" {
value = local.application_password
description = "The Lacework AD Application password"
sensitive = true
}
output "application_id" {
value = local.application_id
description = "The Lacework AD Application id"
}
output "diagnostic_settings_name" {
value = local.diagnostic_settings_name
description = "The name of the subscription's Diagnostic Setting for Activity Logs"
}
output "service_principal_id" {
value = local.service_principal_id
description = "The Lacework Service Principal id"
}
output "storage_account_name" {
value = local.storage_account_name
description = "The name of the centralized Storage Account for Activity Logs"
}
output "storage_account_resource_group" {
value = local.storage_account_resource_group_name
description = "The resource group of the centralized Storage Account for Activity Logs"
}
output "subscription_ids" {
value = local.subscription_ids
description = "The list of subscriptions that will send Activity Logs to the storage account"
}