diff --git a/examples/resources/routeros_routing_ospf_area/resource.tf b/examples/resources/routeros_routing_ospf_area/resource.tf new file mode 100644 index 00000000..09dff98b --- /dev/null +++ b/examples/resources/routeros_routing_ospf_area/resource.tf @@ -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 +} \ No newline at end of file diff --git a/examples/resources/routeros_routing_ospf_instance/resource.tf b/examples/resources/routeros_routing_ospf_instance/resource.tf new file mode 100644 index 00000000..b0fee806 --- /dev/null +++ b/examples/resources/routeros_routing_ospf_instance/resource.tf @@ -0,0 +1,3 @@ +resource "routeros_routing_ospf_instance" "test_routing_ospf_instance" { + name = "test_routing_ospf_instance" +} \ No newline at end of file diff --git a/examples/resources/routeros_routing_ospf_interface_template/resource.tf b/examples/resources/routeros_routing_ospf_interface_template/resource.tf new file mode 100644 index 00000000..b3687fe4 --- /dev/null +++ b/examples/resources/routeros_routing_ospf_interface_template/resource.tf @@ -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 +} \ No newline at end of file