forked from tareksalem/dsl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathref.dsl
More file actions
45 lines (38 loc) · 1.08 KB
/
Copy pathref.dsl
File metadata and controls
45 lines (38 loc) · 1.08 KB
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
workspace extends amazon-web-services.dsl {
model {
!ref "DeploymentNode://Live/Amazon Web Services" {
deploymentNode "New deployment node" {
infrastructureNode "New infrastructure node" {
-> route53
}
}
}
!ref "DeploymentNode://Live/Amazon Web Services/US-East-1" {
deploymentNode "New deployment node 1" {
infrastructureNode "New infrastructure node 1" {
-> route53
}
}
}
!ref region {
deploymentNode "New deployment node 2" {
infrastructureNode "New infrastructure node 2" {
-> route53
}
}
}
!ref live {
deploymentNode "New deployment node 3" {
infrastructureNode "New infrastructure node 3" {
-> route53
}
}
}
}
views {
deployment * "Live" {
include *
autolayout lr
}
}
}