Skip to content

Commit

Permalink
resolves comments, bool in notes and error msg format
Browse files Browse the repository at this point in the history
Relates-to: hashicorp#14736
  • Loading branch information
leesutcliffe committed Nov 28, 2022
1 parent 0e923aa commit b6628ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/services/storage/storage_account_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -1581,7 +1581,7 @@ func resourceStorageAccountUpdate(d *pluginsdk.ResourceData, meta interface{}) e
}

if _, err := client.Update(ctx, id.ResourceGroup, id.Name, opts); err != nil {
return fmt.Errorf("updating Azure Storage Account sftp_enabled %q: %+v", id.Name, err)
return fmt.Errorf("updating `sftp_enabled` for %s: %+v", *id, err)
}
}

Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/storage_account.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ The following arguments are supported:

* `stfp_enabled` - (Optional) Boolean, enable SFTP for the storage account

-> **NOTE:** SFTP support requires `is_hns_enabled` set to `true`. SFTP Support is not yet available in the West Europe region. See [here](https://learn.microsoft.com/en-us/azure/storage/blobs/secure-file-transfer-protocol-support) for more information. Defaults to `False`
-> **NOTE:** SFTP support requires `is_hns_enabled` set to `true`. [More information on SFTP support can be found here](https://learn.microsoft.com/azure/storage/blobs/secure-file-transfer-protocol-support). Defaults to `false`

* `tags` - (Optional) A mapping of tags to assign to the resource.

Expand Down

0 comments on commit b6628ba

Please sign in to comment.