-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
64 lines (52 loc) · 1.82 KB
/
outputs.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
61
62
63
64
output "vpn_site_name" {
description = "Name of the VPN site."
value = azurerm_vpn_site.this.name
}
output "resource_group_name" {
description = "Name of the resource group where the VPN site is created."
value = azurerm_vpn_site.this.resource_group_name
}
output "location" {
description = "Location/region where the VPN site is deployed."
value = azurerm_vpn_site.this.location
}
output "virtual_wan_id" {
description = "ID of the virtual WAN associated with the VPN site."
value = azurerm_vpn_site.this.virtual_wan_id
}
output "address_cidrs" {
description = "List of CIDR blocks representing the address ranges for the VPN site."
value = azurerm_vpn_site.this.address_cidrs
}
output "device_model" {
description = "Model of the VPN site device."
value = azurerm_vpn_site.this.device_model
}
output "device_vendor" {
description = "Vendor of the VPN site device."
value = azurerm_vpn_site.this.device_vendor
}
output "links" {
description = "List of link configurations for the VPN site."
value = azurerm_vpn_site.this.link
}
output "o365_policy_enabled" {
description = "Flag indicating if O365 policy is enabled for the VPN site."
value = var.enable_o365_policy
}
output "allow_endpoint_enabled" {
description = "Flag indicating if O365 policy - Allow Endpoint is enabled."
value = var.allow_endpoint_enabled
}
output "default_endpoint_enabled" {
description = "Flag indicating if O365 policy - Default Endpoint is enabled."
value = var.default_endpoint_enabled
}
output "optimize_endpoint_enabled" {
description = "Flag indicating if O365 policy - Optimize Endpoint is enabled."
value = var.optimize_endpoint_enabled
}
output "tags" {
description = "Tags associated with the VPN site resource."
value = var.tags
}