Skip to content

Commit

Permalink
fixes edges
Browse files Browse the repository at this point in the history
  • Loading branch information
cesar-rodriguez committed Aug 16, 2020
1 parent 7001128 commit 5d8697b
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions docs/architecture.diagrams.py
Expand Up @@ -18,20 +18,18 @@
]

with Cluster("IaC Providers"):
iac = [
iac.Terraform("Terraform"),
iac.Ansible("Ansible"),
iac.Awx("Awx")
]
tf = iac.Terraform("Terraform")
ansible = iac.Ansible("Ansible")
iac.Awx("Awx")


with Cluster("Policy Engine"):
runtime = [
policy = [
ECS("AWS"),
VM("Azure"),
GCE("GCP")
]

cli >> runtime >> iac >> policy
server >> runtime >> iac >> policy
server >> runtime >> tf >> policy
cli >> runtime >> ansible >> policy

0 comments on commit 5d8697b

Please sign in to comment.