-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
Bug fix - azurerm_express_route_connection
- Remove private_link_fast_path_enabled
default vaule
#26928
Conversation
|
|
All test passed, but some of the tests are relate to |
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 @xuzhang3. Could you fix the spelling of the variable please?
}, | ||
} | ||
|
||
privateLinkFatPath := d.GetRawConfig().AsValueMap()["private_link_fast_path_enabled"] |
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.
Could we be mindful of the spelling here
privateLinkFatPath := d.GetRawConfig().AsValueMap()["private_link_fast_path_enabled"] | |
privateLinkFastPath := d.GetRawConfig().AsValueMap()["private_link_fast_path_enabled"] |
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.
fixed
}, | ||
} | ||
|
||
privateLinkFatPath := d.GetRawConfig().AsValueMap()["private_link_fast_path_enabled"] |
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.
privateLinkFatPath := d.GetRawConfig().AsValueMap()["private_link_fast_path_enabled"] | |
privateLinkFastPath := d.GetRawConfig().AsValueMap()["private_link_fast_path_enabled"] |
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 @xuzhang3 LGTM 👍
I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active contributions. |
The
private_link_fast_path_enabled
should not be added to this resource. Don't know why the API have this property in the API doc.private_link_fast_path_enabled
is available the Virtual Network Gateway(ExpressRoute) but this resource(azurerm_express_route_connection
) is for ExpressRouteGateway, they are different resources.The Virtual Network Gateway(ExpressRoute) can be created through the Virtual Network Gateway, (Gateway type:
ExpressRoute
). TheExpressRouteGateway
is created though theVirtual Wan -> Hubs
, you can find the ExpressRoute Gateway after the hub is created.Community Note
Description
PR Checklist
For example: “
resource_name_here
- description of change e.g. adding propertynew_property_name_here
”Changes to existing Resource / Data Source
Testing
Change Log
Below please provide what should go into the changelog (if anything) conforming to the Changelog Format documented here.
azurerm_resource
- support for thething1
property [GH-00000]This is a (please select all that apply):
Related Issue(s)
Fixes #26746
Note
If this PR changes meaningfully during the course of review please update the title and description as required.