-
Notifications
You must be signed in to change notification settings - Fork 337
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
Add azure_rm_publicipprefix relate modules #1403
Add azure_rm_publicipprefix relate modules #1403
Conversation
I just tested {
"changed": false,
"failed": false,
"publicipprefixes": [
{
"custom_ip_prefix": {},
"etag": "W/\"some-etag-uuid\"",
"extended_location": null,
"id": "/subscriptions/subscription-uuid/resourceGroups/my-resource-group/providers/Microsoft.Network/publicIPPrefixes/my-prefix-name",
"ip_tags": {},
"location": "westeurope",
"name": "my-prefix-name",
"prefix_length": 29,
"provisioning_state": "Succeeded",
"public_ip_address_version": "IPv4",
"sku": {
"name": "Standard",
"tier": "Regional"
},
"tags": {},
"type": "Microsoft.Network/publicIPPrefixes",
"zones": [
"1",
"2",
"3"
]
}
]
} compare to {
"etag": "W/\"some-etag-uuid\"",
"id": "/subscriptions/subscription-uuid/resourceGroups/my-resource-group/providers/Microsoft.Network/publicIPPrefixes/my-prefix-name",
"ipPrefix": "a.b.c.d/29",
"ipTags": [],
"location": "westeurope",
"name": "my-prefix-name",
"prefixLength": 29,
"provisioningState": "Succeeded",
"publicIPAddressVersion": "IPv4",
"publicIPAddresses": [
{
"id": "/subscriptions/subscription-uuid/resourceGroups/my-resource-group/providers/Microsoft.Network/publicIPAddresses/vgnwepa01-eth1pip01",
"resourceGroup": "my-resource-group"
}
],
"resourceGroup": "my-resource-group",
"resourceGuid": "some-uuid",
"sku": {
"name": "Standard",
"tier": "Regional"
},
"tags": {},
"type": "Microsoft.Network/publicIPPrefixes",
"zones": [
"1",
"2",
"3"
]
} |
Creation and deletion of a prefix works, but it exhibits the same issue as the info module, where it doesn't display the prefix itself. |
@Nothing4You Thanks for your feedback! I will recheck it! |
the changes that were done to
|
@Nothing4You It has been changed, thanks for your suggestion! |
SUMMARY
Add azure_rm_publicipprefix relate modules, fixes #1398
ISSUE TYPE
COMPONENT NAME
azure_rm_publicipprefix.py
azure_rm_publicipprefix_info.py
ADDITIONAL INFORMATION