Skip to content

Commit

Permalink
fix: add missing security group outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
nitrocode authored Nov 22, 2024
1 parent a777f96 commit 396d8ff
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,16 @@ output "vpn_endpoint_dns_name" {
description = "The DNS Name of the Client VPN Endpoint Connection."
}

output "vpn_security_group" {
value = local.enabled ? module.vpn_security_group : null
description = "The security group module of the Client VPN Endpoint Connection."
}

output "vpn_security_group_id" {
value = local.enabled ? module.vpn_security_group.id : null
description = "The security group ID of the Client VPN Endpoint Connection."
}

output "client_configuration" {
value = local.enabled ? join("", data.awsutils_ec2_client_vpn_export_client_config.default[*].client_configuration) : null
description = "VPN Client Configuration data."
Expand Down

0 comments on commit 396d8ff

Please sign in to comment.