Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
fix linter issues part II
  • Loading branch information
StrawnSC committed Nov 30, 2021
commit 69ea9fbef44fafe2d8240cfb7eb1b7b076b1d12d
3 changes: 3 additions & 0 deletions src/appservice-kube/azext_appservice_kube/_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,9 @@ def load_arguments(self, _):
c.argument('ssl_type', help='The ssl cert type', arg_type=get_enum_type(['SNI', 'IP']))
c.argument('certificate_thumbprint', help='The ssl cert thumbprint')

with self.argument_context(scope + ' config ssl unbind') as c:
c.argument('certificate_thumbprint', help='The ssl cert thumbprint')

with self.argument_context('appservice') as c:
c.argument('resource_group_name', arg_type=resource_group_name_type)
c.argument('location', arg_type=get_location_type(self.cli_ctx))
Expand Down