forked from cloudify-community/eaas-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure.yaml
33 lines (28 loc) · 836 Bytes
/
azure.yaml
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
tosca_definitions_version: cloudify_dsl_1_3
imports:
- https://cloudify.co/spec/cloudify/6.2.0/types.yaml
labels:
csys-obj-type:
values:
- environment
inputs:
azure_location_name:
type: string
description: |
Choose Azure location
default: westus
constraints:
- valid_values:
- westus
capabilities:
cloud_type:
value: azure
cloud_credentials:
value:
azure_tenant_id: { get_secret: azure_tenant_id }
azure_subscription_id: { get_secret: azure_subscription_id }
azure_client_id: { get_secret: azure_client_id }
azure_client_secret: { get_secret: azure_client_secret }
public_key_content: { get_secret: public_key_content }
private_key_content: { get_secret: private_key_content }
region_name: { get_input: azure_location_name }