1234567891011121314151617181920212223242526272829 |
- 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 }"
- }
- output "lambda_function_arn" {
- #value = module.lambda_function.lambda_function_arn
- value = aws_lambda_function.lambda_connection_authorization.arn
- }
- output "lambda_function_reminder" {
- value = "You must configure the lambda connection handler in the AWS console. VPC->Client VPN Endpoints->Modify, under 'Client Connect Handler'"
- }
|