-
Notifications
You must be signed in to change notification settings - Fork 3
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
feat: Adding Port Term Based Connections examples #167
Conversation
srushti-patl
commented
Feb 20, 2025
- Added Port 2 Port Term Based Connection
- Added Port 2 Network Based Connection
modules/port-connection/main.tf
Outdated
@@ -151,6 +155,7 @@ resource "equinix_fabric_connection" "secondary_port_connection" { | |||
} | |||
order { | |||
purchase_order_number = var.purchase_order_number != "" ? var.purchase_order_number : null | |||
term_length = var.term_length != "" ? var.term_length: null |
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.
Because this is a number, is this the correct way to leave it out if it's the default value? Also, should the default value be 1? What are the implications of that?
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.
Default value is 1 for term_length so I will update this condition.
460c92d
to
d19efde
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.
PLEASE READ Comments before merging