-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Closed
Labels
App Servicesaka WebSitesaka WebSitesCXP Attention[Deprecated] The Azure CXP Support Team is responsible for this issue.[Deprecated] The Azure CXP Support Team is responsible for this issue.bugThis issue requires a change to an existing behavior in the product in order to be resolved.This issue requires a change to an existing behavior in the product in order to be resolved.customer-reportedneeds-author-feedbackMore information is needed from author to address the issue.More information is needed from author to address the issue.questionThe issue doesn't require a change to the product in order to be resolved. Most issues start as thatThe issue doesn't require a change to the product in order to be resolved. Most issues start as that
Description
Description
Document Link
Issue
The command below with and without the -ResourceGroupName parameter returns different results, yet the document does not specify that the -ResourceGroupName should be a required field.
$apps = Get-azWebApp (-ResourceGroupName)
foreach($a in $apps){
$a.name
$a.siteconfig.FtpsState
}Demonstration on Expected Results (with the parameter, the FtpsState value showed up correctly)
Demonstration on Actual Results (without the parameter, the FtpsState value showed up null)
Additional findings
Many other values are missing when the -ResourceGroupName parameter is not set. Feel free to check full detailed SiteConfig comparisons running the following commands:
Get-azWebApp | ConvertTo-Json
Get-azWebApp -ResourceGroupName "YourRGName" | ConvertTo-JsonRecommendation
Make the -ResourceGroupName a required parameter so that customers can achieve the desired results.
Metadata
Metadata
Assignees
Labels
App Servicesaka WebSitesaka WebSitesCXP Attention[Deprecated] The Azure CXP Support Team is responsible for this issue.[Deprecated] The Azure CXP Support Team is responsible for this issue.bugThis issue requires a change to an existing behavior in the product in order to be resolved.This issue requires a change to an existing behavior in the product in order to be resolved.customer-reportedneeds-author-feedbackMore information is needed from author to address the issue.More information is needed from author to address the issue.questionThe issue doesn't require a change to the product in order to be resolved. Most issues start as thatThe issue doesn't require a change to the product in order to be resolved. Most issues start as that

