AngiSen
AngiSen

Reputation: 997

Azure Services - Data Security

May I ask what is the security protocol (Https/TCPIP etc) applied in the following scenarios in Azure? I need these details to write my design document.

  1. Between Azure Services
    • Azure Data Factory interacting with Azure Storage
    • Azure Databricks interacting with Azure Storage
  2. Azure Python SDK connecting to Storage Account (Is it TCP/IP ?)

If there is any support page in MS Azure, please direct me there.

Upvotes: 0

Views: 35

Answers (1)

Roman Patutin
Roman Patutin

Reputation: 2210

  1. Inside the Azure data centers used TLS/SSL for communication between services and you can read about it "Encryption of data in transit" section on this page.

  2. The main SDK implementations are wrappers around the REST API and Python SDK is one of them.

Upvotes: 1

Related Questions