Skip to content

Commit

Permalink
Bug fix where external sharing is not being configured
Browse files Browse the repository at this point in the history
  • Loading branch information
alexc-MSFT committed Mar 6, 2024
1 parent 02df70e commit ec5a9db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Source/ARMTemplates/LogicApps/processprovisionrequest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2078,7 +2078,7 @@
"defaultExternalSharingSetting": "@variables('DefaultExternalSharingSetting')",
"disableDocSync": "@variables('DisableDocumentSync')",
"enableAllowAccessRequests": "@variables('EnableAllowAccessRequests')",
"externalSharing": "@{triggerBody()?['ExternalSharing']}",
"externalSharing": "@triggerBody()?['ExternalSharingRequired']",
"featuresToActivate": "@variables('FeaturesToActivate')",
"hubSiteId": "@triggerBody()?['HubSite']",
"joinHub": "@{triggerBody()?['JoinHub']}",
Expand Down
2 changes: 1 addition & 1 deletion Source/Runbooks/ConfigureSpace.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ function AddSiteCollectionAdmins {
}

function SetExternalSharing {
If ($externalSharing -eq "True") {
If ($externalSharing) {

Write-Output "External sharing is required - configuring sharing settings"

Expand Down

0 comments on commit ec5a9db

Please sign in to comment.