Greetings! I am running into a couple of issues with the new ALB resources. ### Terraform Version ``` 18:12 $ terraform -v Terraform v0.7.3 ``` ### Affected Resource(s) - aws_alb_target_group - aws_alb_listener_rule ### Terraform Configuration Files ``` hcl resource "aws_alb_target_group" "alb_target_group_alpha" { name = "alb_target_group_alpha" port = 80 protocol = "HTTP" vpc_id = "${var.vpc_id}" tags { ExampleTag = "I_AM_A_VALUE" } } ``` ``` hcl resource "aws_alb_listener_rule" "forward_traffic_alpha" { listener_arn = "${aws_alb_listener.alb_listener_alpha.arn}" priority = 1000 action { type = "forward" target_group_arn = "${aws_alb_target_group.alb_target_group_alpha.arn}" } condition { field = "path-pattern" values = ["*"] } } ``` ### Expected Behavior Priority should have been updated in AWS when changing value in config file. `terraform plan` indicates that tags will be updated, and that priority will be changed. ### Actual Behavior None of the above. In order to change the priorities, the ALB had to be recreated (i.e. manually deleted and then run `terraform apply`). Tags are not applied to the target group resource _at all_. ### Steps to Reproduce Please list the steps required to reproduce the issue, for example: 1. Create an `aws_alb_target_group` resource with tags 2. Run `terraform apply` 3. Expect tags 4. Be disappointed OR 1. Change priorities of listener rule 2. `terraform apply` 3. Nothing changed Apologies if missing critical information - this is my first time opening a ticket. Thanks!