Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
danischm committed Jan 7, 2025
1 parent 9946f2b commit e6cf5fa
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 27 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
12 changes: 6 additions & 6 deletions examples/complete/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
12 changes: 6 additions & 6 deletions examples/complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
18 changes: 9 additions & 9 deletions tests/full/test_full.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"
}

Expand Down

0 comments on commit e6cf5fa

Please sign in to comment.