-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathaws.yaml
More file actions
33 lines (27 loc) · 767 Bytes
/
aws.yaml
File metadata and controls
33 lines (27 loc) · 767 Bytes
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
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:
aws_region_name:
type: string
description: |
Choose AWS region name
default: us-west-1
constraints:
- valid_values:
- us-west-1
capabilities:
cloud_type:
value: aws
cloud_credentials:
value:
aws_access_key_id: { get_secret: aws_access_key_id }
aws_keypair: { get_secret: aws_keypair }
aws_secret_access_key: { get_secret: aws_secret_access_key }
public_key_content: { get_secret: public_key_content }
private_key_content: { get_secret: private_key_content }
region_name: { get_input: aws_region_name }