page_type | languages | products | description | urlFragment | ||
---|---|---|---|---|---|---|
sample |
|
|
This sample explains how you can create a VM in Python, with certificates installed automatically from a Key Vault account. |
key-vault-python-deploy-certificates-to-vm |
This sample explains how you can create a VM in Python, with certificates installed automatically from a Key Vault account.
-
An Azure subscription
-
A Service Principal. Create an Azure service principal either through Azure CLI, PowerShell or the portal.
-
If you don't already have it, install Python.
This sample (and the SDK) is compatible with Python 2.7, and 3.5+.
-
We recommend that you use a virtual environment to run this example, but it's not required. Install and initialize the virtual environment with the "venv" module on Python 3 (you must install virtualenv for Python 2.7):
python -m venv env # Might be "python3" or "py -3.6" depending on your Python installation source env/bin/activate # Linux shell (Bash, ZSH, etc.) only env/scripts/activate # PowerShell only env/scripts/activate.bat # Windows CMD only
-
Clone the repository.
git clone https://github.com/Azure-Samples/key-vault-python-deploy-certificates-to-vm.git
-
Install the dependencies using pip.
cd key-vault-python-deploy-certificates-to-vm pip install -r requirements.txt
-
Export these environment variables into your current shell or update the credentials in the example file.
export AZURE_TENANT_ID={your tenant id} export AZURE_CLIENT_ID={your client id} export AZURE_CLIENT_OBJECT_ID={your client object id} export AZURE_CLIENT_SECRET={your client secret} export AZURE_SUBSCRIPTION_ID={your subscription id}
-
Run the sample.
python example.py
This example setup some preliminary components that are no the topic of this sample and do not differ from regular scenarios:
- A Resource Group
- A Virtual Network
- A Subnet
- A Public IP
- A Network Interface
For details about creation of these components, you can refer to the generic samples:
vault = kv_mgmt_client.vaults.begin_create_or_update(
GROUP_NAME,
KV_NAME,
{
'location': LOCATION,
'properties': {
'sku': {
'name': 'standard'
},
'tenant_id': os.environ['AZURE_TENANT_ID'],
'access_policies': [{
'tenant_id': os.environ['AZURE_TENANT_ID'],
'object_id': sp_object_id,
'permissions': {
# Only "certificates" and "secrets" are needed for this sample
'certificates': ['all'],
'secrets': ['all']
}
}],
# Critical to allow the VM to download certificates later
'enabled_for_deployment': True
}
}
)
You can also find different example on how to create a Key Vault account:
- From CLI 2.0: https://docs.microsoft.com/azure/key-vault/key-vault-manage-with-cli2
- From Python SDK: https://github.com/Azure-Samples/key-vault-python-manage
In order to execute this sample, your Key Vault account MUST have the "enabled-for-deployment" special permission. The EnabledForDeployment flag explicitly gives Azure (Microsoft.Compute resource provider) permission to use the certificates stored as secrets for this deployment.
Note that access policy takes an object_id, not a client_id as parameter.
certificate_poller = cert_client.begin_create_certificate(
certificate_name,
policy=DEFAULT_POLICY
)
certificate_poller.wait()
An example of DEFAULT_POLICY
is described in the sample file:
DEFAULT_POLICY = CertificatePolicy(
'Self',
exportable=True,
key_type='RSA',
key_size=2048,
reuse_key=True,
content_type='application/x-pkcs12',
subject='CN=CLIGetDefaultPolicy',
validity_in_months=12,
key_usage=[
"cRLSign",
"dataEncipherment",
"digitalSignature",
"keyEncipherment",
"keyAgreement",
"keyCertSign"
],
lifetime_actions=[
LifetimeAction(action=CertificatePolicyAction.auto_renew, days_before_expiry=90)
]
)
This is the same policy that:
- Is pre-configured in the Portal when you choose "Generate" in the Certificates tab
- You get when you use the CLI 2.0:
az keyvault certificate get-default-policy
Create certificate is an async operation. This sample provides a simple polling mechanism example.
First, get your certificate as a Secret object:
certificate_as_secret = secret_client.get_secret(
certificate_name,
"" # Latest version
)
During the creation of the VM, use the secrets
attribute to assign your certificate:.
params_create = {
'location': LOCATION,
'hardware_profile': get_hardware_profile(),
'network_profile': get_network_profile(nic.id),
'storage_profile': get_storage_profile(),
'os_profile': {
'admin_username': ADMIN_LOGIN,
'admin_password': ADMIN_PASSWORD,
'computer_name': 'testkvcertificates',
# This is the Key Vault critical part
'secrets': [{
'source_vault': {
'id': vault.id,
},
'vault_certificates': [{
'certificate_url': certificate_as_secret.id
}]
}]
}
}
vm_poller = compute_client.virtual_machines.begin_create_or_update(
GROUP_NAME,
VM_NAME,
params_create,
)
vm_result = vm_poller.result()