Skip to content
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

[Network] Fix public-ip create --ip-tags #7638

Merged
merged 1 commit into from
Oct 23, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/command_modules/azure-cli-network/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Release History
2.2.8
+++++
* `express-route peering connection create`: Fix issue where `--peer-circuit` would not accept an ID.
* `public-ip create`: Fix issue where `--ip-tags` did not work correctly.

2.2.7
+++++
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -713,6 +713,7 @@ def process_nic_create_namespace(cmd, namespace):
def process_public_ip_create_namespace(cmd, namespace):
get_default_location_from_resource_group(cmd, namespace)
validate_public_ip_prefix(cmd, namespace)
validate_ip_tags(cmd, namespace)
validate_tags(namespace)


Expand Down