-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.cycloid.yml
75 lines (72 loc) · 2.05 KB
/
.cycloid.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
---
# Configuration of the Cycloid stack
version: '3'
name: 'getting-started'
canonical: 'stack-getting-started'
status: 'public'
keywords:
- 'aws'
- 'azure'
- 'gcp'
- 'instance'
- 'compute'
- 'easy'
- 'onboarding'
- 'provider:aws'
- 'provider:azure'
- 'provider:gcp'
description: |
Getting started stack purpose is to ovver a easy to use Cycloid stack during onboarding process.
This stack offer on multi cloud provider to create a default compute instance.
author: 'Cycloid'
image: 'https://raw.githubusercontent.com/cycloid-community-catalog/stack-getting-started/master/icon.png'
technologies:
- technology: AWS
version: n/a
- technology: Azure
version: n/a
- technology: GCP
version: n/a
config:
aws:
name: 'AWS'
description: 'Create an Elastic Compute Cloud (EC2)'
cloud_provider: aws
pipeline:
pipeline:
path: pipeline/pipeline.yml
variables:
path: pipeline/variables.sample.yml
destination: ($ .project $)/pipeline/($ .environment $)/variables.yml
terraform:
config:
destination: ($ .project $)/terraform/($ .environment $)/main.tf
path: terraform/aws/main.tf.sample
azure:
name: 'Azure'
description: 'Create a Virtual Machines'
cloud_provider: azurerm
pipeline:
pipeline:
path: pipeline/pipeline.yml
variables:
path: pipeline/variables.sample.yml
destination: ($ .project $)/pipeline/($ .environment $)/variables.yml
terraform:
config:
destination: ($ .project $)/terraform/($ .environment $)/main.tf
path: terraform/azure/main.tf.sample
gcp:
name: 'GCP'
description: 'Create a Compute Engine'
cloud_provider: google
pipeline:
pipeline:
path: pipeline/pipeline.yml
variables:
path: pipeline/variables.sample.yml
destination: ($ .project $)/pipeline/($ .environment $)/variables.yml
terraform:
config:
destination: ($ .project $)/terraform/($ .environment $)/main.tf
path: terraform/gcp/main.tf.sample