-
Notifications
You must be signed in to change notification settings - Fork 80
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
Added support for querying public IP address #273
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for your valuable contribution @tboloo! 👏
Can you
- add a terraform resource into the
azure.tf
and pick a random name for it? Random name is important to prevent name clashing at integration tests. - add the
ap_address_name
into outputs.tf with the value of the terraform public ip resource name.
58ee1f6
to
62f3962
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tboloo
Thanks for the updates.
Let's fix the typo and set the terraform resource count default to 1
.
terraform/outputs.tf
Outdated
@@ -314,4 +314,9 @@ output "application_gateway_name" { | |||
output "hdinsight_cluster_name" { | |||
description = "HDINSIGHT cluster name." | |||
value = var.hd_insight_count > 0 ? azurerm_hdinsight_interactive_query_cluster.hdinsight_cluster.0.name : "" | |||
} | |||
|
|||
output "ap_address_name" { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be ip_address_name
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
Signed-off-by: Bolesław Tekielski <bolek@zeepeetek.pl>
62f3962
to
1123775
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks good to me.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for this @tboloo !
Signed-off-by: Bolesław Tekielski bolek@zeepeetek.pl
Description
Added support for querying public IP address.
Issues Resolved
n/a
Check List
rake lint
passes