-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeploy_minimal_key_vault.yml
38 lines (36 loc) · 1.03 KB
/
deploy_minimal_key_vault.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
---
- name: Deploy Azure Key Vault
hosts: localhost
vars_prompt:
- name: key_vault_name
prompt: The name of the key vault
private: false
- name: key_vault_rg_name
prompt: The name of the key vault
private: false
- name: operators_id
prompt: Identity in Azure Active Directory for the vault
private: false
- name: certificates_permissions
prompt: The permissions to certificates in the vault
private: true
- name: keys_permissions
prompt: The permissions to keys in the vault
private: true
- name: secrets_permissions
prompt: The permissions to secrets in the vault
private: false
- name: location
prompt: The location for the resources
private: false
- name: vault_sku
prompt: The SKU for the key vault
private: false
vars:
deployment_name: "{{ key_vault_name }}-{{ location }}"
resource_tags:
environment: example
phase: example
source: ansible-azure
roles:
- role: azure_minimal_key_vault