Skip to content

Commit e856d84

Browse files
authored
Merge pull request #102087 from persident/patch-3
Fix permissions for SAS token
2 parents b5f46ff + 90a73c6 commit e856d84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/governance/machine-configuration/machine-configuration-create-publish.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Optionally, you can add a SAS token in the URL, this ensures that the content pa
6161
```powershell
6262
$StartTime = Get-Date
6363
$EndTime = $startTime.AddYears(3)
64-
$contenturi = New-AzStorageBlobSASToken -StartTime $StartTime -ExpiryTime $EndTime -Container "guestconfiguration" -Blob "MyConfig.zip" -Permission rwd -Context $Context -FullUri
64+
$contenturi = New-AzStorageBlobSASToken -StartTime $StartTime -ExpiryTime $EndTime -Container "guestconfiguration" -Blob "MyConfig.zip" -Permission r -Context $Context -FullUri
6565
```
6666

6767
## Next steps

0 commit comments

Comments
 (0)