Terraform Experimenting
To run the majority of examples in this area you you do not need a cloud subscription. You only need to download terraform and create the below 3 files.
graph TB
subgraph Environment
Device2[variables.tf] --> Device4
Device3[locals.tf] --> Device4
Device4[main.tf]
end
style Environment fill:#FFFFFF,stroke:#333,stroke-width:1px, stroke-dasharray: 2
%% style App0 fill:white,stroke:#333,colour: white, stroke-width:1px , stroke-dasharray: 2
style Device2 fill:#90EE90 ,stroke:#333,stroke-width:1px , stroke-dasharray: 2
style Device3 fill:#90EE90 ,stroke:#333,stroke-width:1px , stroke-dasharray: 2
style Device4 fill:#90EE90 ,stroke:#333,stroke-width:1px , stroke-dasharray: 2
terraform apply -var-file="./variables.tfvars"