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

Rdbms test renovate #4

Merged
merged 7 commits into from
May 27, 2021
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
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,10 @@ def prepare_private_dns_zone(cmd, database_engine, resource_group, server_name,

dns_rg = None
if private_dns_zone is None:
private_dns_zone = server_name + '.' + private_dns_zone_suffix
if 'private' in private_dns_zone_suffix:
private_dns_zone = server_name + '.' + private_dns_zone_suffix
else:
private_dns_zone = server_name + '.private.' + private_dns_zone_suffix

# resource ID input => check subscription and change client
elif not _check_if_resource_name(private_dns_zone) and is_valid_resource_id(private_dns_zone):
Expand Down
Loading