@@ -144,7 +144,7 @@ terraform {
144
144
required_providers {
145
145
aws = {
146
146
source = "hashicorp/aws"
147
- version = "~> 5 .0"
147
+ version = "~> 6 .0"
148
148
}
149
149
}
150
150
}
@@ -536,31 +536,31 @@ resource "aws_security_group" "defguard_db_sg" {
536
536
###########################################################################
537
537
538
538
output "defguard_core_private_address" {
539
- description = "The IP address of the Defguard Core instance in the internal network"
539
+ description = "IP address of Defguard Core instance in the internal network"
540
540
value = aws_network_interface.defguard_core_network_interface.private_ip
541
541
}
542
542
543
543
output "defguard_core_public_address" {
544
- description = "The public IP address of the Defguard Core instance"
544
+ description = "Public IP address of Defguard Core instance"
545
545
value = aws_eip.defguard_core_endpoint.public_ip
546
546
}
547
547
548
548
output "defguard_proxy_public_address" {
549
- description = "The public IP address of the Defguard Proxy instance"
549
+ description = "Public IP address of Defguard Proxy instance"
550
550
value = aws_eip.defguard_proxy_endpoint.public_ip
551
551
}
552
552
553
553
output "defguard_proxy_private_address" {
554
- description = "The private IP address of the Defguard Proxy instance"
554
+ description = "Private IP address of Defguard Proxy instance"
555
555
value = aws_network_interface.defguard_proxy_network_interface.private_ip
556
556
}
557
557
558
558
output "defguard_gateway_public_addresses" {
559
- description = "The public IP addresses of the Defguard Gateway instances"
559
+ description = "Public IP addresses of Defguard Gateway instances"
560
560
value = [for gw in aws_eip.defguard_gateway_endpoint : gw.public_ip]
561
561
}
562
562
563
563
output "defguard_gateway_private_addresses" {
564
- description = "The private IP addresses of the Defguard Gateway instances"
564
+ description = "Private IP addresses of Defguard Gateway instances"
565
565
value = [for gw in aws_network_interface.defguard_gateway_network_interface : gw.private_ip]
566
566
}
0 commit comments