Please enable JavaScript.
Coggle requires JavaScript to display documents.
Azure Storage chapter (Security (Secure storage account using RBAC (Role…
Azure Storage chapter
Security
- Secure storage account using RBAC (Role based access control) and Azure Active Directory (Azure AD)
-
-
- Secure data in transit using client-side encryption, HTTPS or SMB 3.0
- Storage service encryption (Storage service encrypts data written to the storage account)
- Azure disk encryption (OS and data disks for VMs)
- Secure access to data plane objects using SAS (Shared access signature)
4 data services
-
File storage
Can setup highly available network file shares that can
be accessed by using standard server message block (SMB) protocol
With SMB 2.1, file share accessible to VMs in the same region as storage account. Because SMB 2.1 does not support encryption
With SMB 3.0, share accessible to VMs in different regions or even desktop
To mount Azure file share on the desktop, port 445 (SMB)
must be open
SMB 3.0 by Linux/Mac does not support encryption, hence share can not be mounted on those platforms
-
-
To create or view fileshare,
upload/download files to it from outside Azure
-
-
-
Redundancy
- Locally redundant storage (LRS)
- Geo-redundant storage (GRS)
- Read-Access Geo-redundant storage
- Zone-redundant storage (ZRS)
Blobs types
Block blobs
-
-
Named so, because files larger than 64MB
must be uploaded as small blocks
and consolidated into the final blob
Page blobs
-
-
Named so, as they provide random RW access to 512 byte pages
Append blobs
Made up of blocks like block blobs,
but optimized for append operations
Used for logging from multiple sources.
For example, writing trace of an application running on multiple VMs to an append blob
-
-
-