1234567891011121314151617181920 |
- output "WARNING" {
- value = "WARNING: Recreating the endpoint may require intervention from the zScalar team. (Not yet known for sure)"
- }
- # For finding out what's really available:
- #output "endpoint_details" {
- # value = aws_ec2_client_vpn_endpoint.vpn
- #}
- output "dns_name" {
- value = aws_ec2_client_vpn_endpoint.vpn.dns_name
- }
- output "vpn_id" {
- value = aws_ec2_client_vpn_endpoint.vpn.id
- }
- output "self_service_url" {
- value = "https://gov.self-service.clientvpn.amazonaws.com/endpoints/${ aws_ec2_client_vpn_endpoint.vpn.id }"
- }
|