#2072 was resolved by the new az configure -d flag via #2414 (yay!), but I wanted to make sure we captured the discussion to automatically set the default web setting when you create a new one. That way, you can call az appservice web create, and then immediately run commands on it (e.g. browse), without needing to specify the name again or explicitly call az configure -d web=foo manually.
Instead of doing (assuming you have a default group already set):
az appservice web create -n foo
az configure -d web=foo
az appservice web browse
You could do this:
az appservice web create -n foo
az appservice web browse
#2072 was resolved by the new
az configure -dflag via #2414 (yay!), but I wanted to make sure we captured the discussion to automatically set the default web setting when you create a new one. That way, you can callaz appservice web create, and then immediately run commands on it (e.g.browse), without needing to specify the name again or explicitly callaz configure -d web=foomanually.Instead of doing (assuming you have a default group already set):
You could do this: