-
Notifications
You must be signed in to change notification settings - Fork 9.6k
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
provider/aws: Add aws_alb_listener data source #10181
provider/aws: Add aws_alb_listener data source #10181
Conversation
This adds the aws_alb_listener data source to get information on an AWS Application Load Balancer listener. The schema is slightly modified (only option-wise, attributes are the same) and we use the aws_alb_listener resource read function to get the data. Note that the HTTPS test here may fail due until hashicorp#10180 is merged.
Just realized I forgot about docs! Will add these ASAP. |
Now documented.
All docs added, this one is good to go! |
LGTM! Thanks so much for the follow up commit for the docs - the tests are green too :) Bonus points for the use of errwrap ;)
|
* provider/aws: Add aws_alb_listener data source This adds the aws_alb_listener data source to get information on an AWS Application Load Balancer listener. The schema is slightly modified (only option-wise, attributes are the same) and we use the aws_alb_listener resource read function to get the data. Note that the HTTPS test here may fail due until #10180 is merged. * provider/aws: Add aws_alb_listener data source docs Now documented.
Thank you sir! |
* provider/aws: Add aws_alb_listener data source This adds the aws_alb_listener data source to get information on an AWS Application Load Balancer listener. The schema is slightly modified (only option-wise, attributes are the same) and we use the aws_alb_listener resource read function to get the data. Note that the HTTPS test here may fail due until hashicorp#10180 is merged. * provider/aws: Add aws_alb_listener data source docs Now documented.
* provider/aws: Add aws_alb_listener data source This adds the aws_alb_listener data source to get information on an AWS Application Load Balancer listener. The schema is slightly modified (only option-wise, attributes are the same) and we use the aws_alb_listener resource read function to get the data. Note that the HTTPS test here may fail due until hashicorp#10180 is merged. * provider/aws: Add aws_alb_listener data source docs Now documented.
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
This adds the
aws_alb_listener
data source to get information on an AWSApplication Load Balancer listener.
The schema is slightly modified (only option-wise, attributes are the
same) and we use the
aws_alb_listener
resource read function to get thedata.
Note that the HTTPS test here may fail due until
#10180 is merged.