Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removing target group from http_redirect listener rule #155

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
removing target group from http_redirect listener rule
  • Loading branch information
mission-ajennings committed Feb 2, 2024
commit 8034fb856c09d492677caa9d3867afda555236a0
3 changes: 1 addition & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,7 @@ resource "aws_lb_listener" "http_redirect" {
tags = merge(module.this.tags, var.listener_additional_tags)

default_action {
target_group_arn = one(aws_lb_target_group.default[*].arn)
type = "redirect"
type = "redirect"

redirect {
port = "443"
Expand Down
Loading