Skip to content

Commit

Permalink
added log group name to outputs (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
new23d authored Aug 24, 2023
1 parent 6a98cfb commit 58af3b3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions discriminat.tf
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,11 @@ terraform {

## Outputs

output "cloudwatch_log_group_name" {
value = "DiscrimiNAT"
description = "Name of the CloudWatch Log Group where DiscrimiNAT instances will log traffic flow and configuration changes. Useful for automating any logging routing configuration."
}

output "target_network_interfaces" {
value = { for i, z in data.aws_subnet.public_subnet :
z.availability_zone => aws_network_interface.static_egress[i].id }
Expand Down
2 changes: 1 addition & 1 deletion examples/aws_vpc/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module "aws_vpc" {
enable_dns_support = true
enable_dns_hostnames = true

azs = ["eu-west-2a", "eu-west-2b"]
azs = ["eu-west-3a", "eu-west-3b"]
public_subnets = ["172.16.11.0/24", "172.16.21.0/24"]
private_subnets = ["172.16.12.0/24", "172.16.22.0/24"]

Expand Down

0 comments on commit 58af3b3

Please sign in to comment.