-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
key algorithm deprecated fix, tls >= 3.2.0 (#19)
* tls >= 3.2.0 * remove key_algorithm * update outputs * update README.md
- Loading branch information
Showing
4 changed files
with
27 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,34 @@ | ||
output "security_group_id" { | ||
value = aws_security_group.this.id | ||
description = "A map of tags to add to all resources" | ||
value = aws_security_group.this.id | ||
} | ||
|
||
output "security_group_name" { | ||
value = aws_security_group.this.name | ||
description = "Name of the security group" | ||
value = aws_security_group.this.name | ||
} | ||
|
||
output "security_group_description" { | ||
value = aws_security_group.this.description | ||
description = "Security group description" | ||
value = aws_security_group.this.description | ||
} | ||
|
||
output "security_group_vpc_id" { | ||
value = aws_security_group.this.vpc_id | ||
description = "VPC ID" | ||
value = aws_security_group.this.vpc_id | ||
} | ||
|
||
output "ec2_client_vpn_endpoint_id" { | ||
value = aws_ec2_client_vpn_endpoint.this_sso.id | ||
description = "The ID of the Client VPN endpoint" | ||
value = aws_ec2_client_vpn_endpoint.this_sso.id | ||
} | ||
|
||
output "ec2_client_vpn_endpoint_arn" { | ||
value = aws_ec2_client_vpn_endpoint.this_sso.arn | ||
description = "The ARN of the Client VPN endpoint" | ||
value = aws_ec2_client_vpn_endpoint.this_sso.arn | ||
} | ||
|
||
output "ec2_client_vpn_network_associations" { | ||
value = aws_ec2_client_vpn_network_association.this_sso | ||
description = "Network associations for AWS Client VPN endpoint" | ||
value = aws_ec2_client_vpn_network_association.this_sso | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters