Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 1.27 KB

5. Implement Authentication and Secure Data.md

File metadata and controls

44 lines (32 loc) · 1.27 KB

Implement Authentication and Secure Data (5-10%)

Implement secure data solutions

Encrypt and decrypt data ar rest

  • Secure Storage Encrypten (SSE) enabled by default (connot be encrypted)
    • Azure keys or own keys
  • Database encryption (SQL Server, Azure SQL db, Azure SQL)
    • Transparent Data Encryption (TDE)
    • Azure keys or own keys
    • Always Encrypted - Per column
    • To use
      • create Column Master Key (CMK)
      • create Colum Encryption Key (CEK)
      • use new connection string

Azure Confidential Computer

  • In preview
  • can't modify the code
  • can't debug
  • protected from spying

SSL/TLS

  • VM's port 443
  • Web apps
  • SQL db
  • Storage

Manage key vault

  • Also from arm templates

Links

Home