From e6cf5fa36a2cf372e0f1a70abd4c6110824ee554 Mon Sep 17 00:00:00 2001 From: danischm Date: Tue, 7 Jan 2025 16:52:32 +0100 Subject: [PATCH] Fix typo --- README.md | 12 ++++++------ examples/complete/README.md | 12 ++++++------ examples/complete/main.tf | 12 ++++++------ tests/full/test_full.tf | 18 +++++++++--------- 4 files changed, 27 insertions(+), 27 deletions(-) diff --git a/README.md b/README.md index 02feacb..bdf322d 100644 --- a/README.md +++ b/README.md @@ -17,12 +17,12 @@ module "nxos_ospf" { name = "OSPF1" vrfs = [ { - vrf = "default" - admin_state = false - bandwidth_reference = 1000 - banwidth_reference_unit = "gbps" - distance = 120 - router_id = "100.1.1.1" + vrf = "default" + admin_state = false + bandwidth_reference = 1000 + bandwidth_reference_unit = "gbps" + distance = 120 + router_id = "100.1.1.1" areas = [ { area = "0.0.0.0" diff --git a/examples/complete/README.md b/examples/complete/README.md index f532fe8..2be39b6 100644 --- a/examples/complete/README.md +++ b/examples/complete/README.md @@ -19,12 +19,12 @@ module "nxos_ospf" { name = "OSPF1" vrfs = [ { - vrf = "default" - admin_state = false - bandwidth_reference = 1000 - banwidth_reference_unit = "gbps" - distance = 120 - router_id = "100.1.1.1" + vrf = "default" + admin_state = false + bandwidth_reference = 1000 + bandwidth_reference_unit = "gbps" + distance = 120 + router_id = "100.1.1.1" areas = [ { area = "0.0.0.0" diff --git a/examples/complete/main.tf b/examples/complete/main.tf index d9d31b5..2b2a828 100644 --- a/examples/complete/main.tf +++ b/examples/complete/main.tf @@ -5,12 +5,12 @@ module "nxos_ospf" { name = "OSPF1" vrfs = [ { - vrf = "default" - admin_state = false - bandwidth_reference = 1000 - banwidth_reference_unit = "gbps" - distance = 120 - router_id = "100.1.1.1" + vrf = "default" + admin_state = false + bandwidth_reference = 1000 + bandwidth_reference_unit = "gbps" + distance = 120 + router_id = "100.1.1.1" areas = [ { area = "0.0.0.0" diff --git a/tests/full/test_full.tf b/tests/full/test_full.tf index 075852b..ea754c4 100644 --- a/tests/full/test_full.tf +++ b/tests/full/test_full.tf @@ -51,12 +51,12 @@ module "main" { name = "OSPF1" vrfs = [ { - vrf = "default" - admin_state = false - bandwidth_reference = 1000 - banwidth_reference_unit = "gbps" - distance = 120 - router_id = "100.1.1.1" + vrf = "default" + admin_state = false + bandwidth_reference = 1000 + bandwidth_reference_unit = "gbps" + distance = 120 + router_id = "100.1.1.1" areas = [ { area = "0.0.0.0" @@ -134,9 +134,9 @@ resource "test_assertions" "nxos_ospf_vrf" { want = 1000 } - equal "banwidth_reference_unit" { - description = "banwidth_reference_unit" - got = data.nxos_ospf_vrf.ospfDom.banwidth_reference_unit + equal "bandwidth_reference_unit" { + description = "bandwidth_reference_unit" + got = data.nxos_ospf_vrf.ospfDom.bandwidth_reference_unit want = "gbps" }