@@ -144,7 +144,7 @@ terraform {
144144 required_providers {
145145 aws = {
146146 source = "hashicorp/aws"
147- version = "~> 5 .0"
147+ version = "~> 6 .0"
148148 }
149149 }
150150}
@@ -536,31 +536,31 @@ resource "aws_security_group" "defguard_db_sg" {
536536###########################################################################
537537
538538output "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"
540540 value = aws_network_interface.defguard_core_network_interface.private_ip
541541}
542542
543543output "defguard_core_public_address" {
544- description = "The public IP address of the Defguard Core instance"
544+ description = "Public IP address of Defguard Core instance"
545545 value = aws_eip.defguard_core_endpoint.public_ip
546546}
547547
548548output "defguard_proxy_public_address" {
549- description = "The public IP address of the Defguard Proxy instance"
549+ description = "Public IP address of Defguard Proxy instance"
550550 value = aws_eip.defguard_proxy_endpoint.public_ip
551551}
552552
553553output "defguard_proxy_private_address" {
554- description = "The private IP address of the Defguard Proxy instance"
554+ description = "Private IP address of Defguard Proxy instance"
555555 value = aws_network_interface.defguard_proxy_network_interface.private_ip
556556}
557557
558558output "defguard_gateway_public_addresses" {
559- description = "The public IP addresses of the Defguard Gateway instances"
559+ description = "Public IP addresses of Defguard Gateway instances"
560560 value = [for gw in aws_eip.defguard_gateway_endpoint : gw.public_ip]
561561}
562562
563563output "defguard_gateway_private_addresses" {
564- description = "The private IP addresses of the Defguard Gateway instances"
564+ description = "Private IP addresses of Defguard Gateway instances"
565565 value = [for gw in aws_network_interface.defguard_gateway_network_interface : gw.private_ip]
566566}
0 commit comments