Skip to content

Commit

Permalink
docs(ospf): Return the OSPF examples from the 78b05a2 commit
Browse files Browse the repository at this point in the history
  • Loading branch information
vaerh committed Jun 19, 2023
1 parent 7a6024b commit f0db91e
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
8 changes: 8 additions & 0 deletions examples/resources/routeros_routing_ospf_area/resource.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
resource "routeros_routing_ospf_instance" "test_routing_ospf_instance" {
name = "test_routing_ospf_instance"
}

resource "routeros_routing_ospf_area" "test_routing_ospf_area" {
name = "test_routing_ospf_area"
instance = routeros_routing_ospf_instance.test_routing_ospf_instance.name
}
3 changes: 3 additions & 0 deletions examples/resources/routeros_routing_ospf_instance/resource.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
resource "routeros_routing_ospf_instance" "test_routing_ospf_instance" {
name = "test_routing_ospf_instance"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
resource "routeros_routing_ospf_instance" "test_routing_ospf_instance" {
name = "test_routing_ospf_instance"
}

resource "routeros_routing_ospf_area" "test_routing_ospf_area" {
name = "test_routing_ospf_area"
instance = routeros_routing_ospf_instance.test_routing_ospf_instance.name
}

resource "routeros_routing_ospf_interface_template" "test_routing_ospf_interface_template" {
area = routeros_routing_ospf_area.test_routing_ospf_area.name
}

0 comments on commit f0db91e

Please sign in to comment.