f5devcentral / f5-azure-saca

Secure Azure Computing Architecture for DoD (SACA) - Notional Secure Cloud Computing Architecture (SCCA) Deployment
MIT License
26 stars 40 forks source link

included auto.admin.tfvars.example file has syntax errors #131

Closed f4plusplus closed 3 years ago

f4plusplus commented 3 years ago

Variable definition for host host nics generates warning during terraform plan:

it's currently listed as: f5vm01mgmt = "10.90.0.4" f5vm01ext = "10.90.1.4" f5vm01ext_sec = "10.90.1.11" f5vm01int = "10.90.2.4"

02

f5vm02mgmt = "10.90.0.5" f5vm02ext = "10.90.1.5" f5vm02ext_sec = "10.90.1.12" f5vm02int = "10.90.2.5"

three tier

03

f5vm03mgmt = "10.90.0.6" f5vm03ext = "10.90.6.4" f5vm03ext_sec = "10.90.6.11" f5vm03int = "10.90.7.4"

04

f5vm04mgmt = "10.90.0.7" f5vm04ext = "10.90.6.5" f5vm04ext_sec = "10.90.6.12" f5vm04int = "10.90.7.5"

Should probably be listed as: f5_t1_ext = { f5vm01ext = "10.90.1.4" f5vm01ext_sec = "10.90.1.11" f5vm02ext = "10.90.1.5" f5vm02ext_sec = "10.90.1.12" }

f5_t1_int = { f5vm01int = "10.90.2.4" f5vm01int_sec = "10.90.2.11" f5vm02int = "10.90.2.5" f5vm02int_sec = "10.90.2.12" }

f5_t3_ext = { f5vm03ext = "10.90.6.4" f5vm03ext_sec = "10.90.6.11" f5vm04ext = "10.90.6.5" f5vm04ext_sec = "10.90.6.12" }

f5_t3_int = { f5vm03int = "10.90.7.4" f5vm03int_sec = "10.90.7.11" f5vm04int = "10.90.7.5" f5vm04int_sec = "10.90.7.12" }

i need to test this and ensure this works.