From c1218d505a9a55046591353d3d025430a7a6df83 Mon Sep 17 00:00:00 2001 From: bwJuniper <98770420+bwJuniper@users.noreply.github.com> Date: Wed, 18 Oct 2023 14:20:42 -0700 Subject: [PATCH 1/2] import_policy = "default_only" now, so that fixes this issue. --- examples/resources/apstra_datacenter_routing_policy/example.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/resources/apstra_datacenter_routing_policy/example.tf b/examples/resources/apstra_datacenter_routing_policy/example.tf index 8c5d5f99..4384ae36 100644 --- a/examples/resources/apstra_datacenter_routing_policy/example.tf +++ b/examples/resources/apstra_datacenter_routing_policy/example.tf @@ -8,7 +8,7 @@ resource "apstra_datacenter_routing_policy" "just_pull_every_available_lever" { blueprint_id = data.apstra_datacenter_blueprint.prod.id name = "nope" description = "Nothing good can come from this" - import_policy = "defult_only" // "default_only" is the default. other options: "all" "extra_only" + import_policy = "default_only" // "default_only" is the default. other options: "all" "extra_only" extra_imports = [ { prefix = "10.0.0.0/8", action = "deny" }, { prefix = "11.0.0.0/8", ge_mask = 31, le_mask = 32, action = "deny" }, From 8942e4fa2e5b7fc06927d44779473343101337bc Mon Sep 17 00:00:00 2001 From: bwJuniper <98770420+bwJuniper@users.noreply.github.com> Date: Wed, 18 Oct 2023 14:28:44 -0700 Subject: [PATCH 2/2] forgot to build docs --- docs/resources/datacenter_routing_policy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/resources/datacenter_routing_policy.md b/docs/resources/datacenter_routing_policy.md index 5fe89d6b..8e64302a 100644 --- a/docs/resources/datacenter_routing_policy.md +++ b/docs/resources/datacenter_routing_policy.md @@ -22,7 +22,7 @@ resource "apstra_datacenter_routing_policy" "just_pull_every_available_lever" { blueprint_id = data.apstra_datacenter_blueprint.prod.id name = "nope" description = "Nothing good can come from this" - import_policy = "defult_only" // "default_only" is the default. other options: "all" "extra_only" + import_policy = "default_only" // "default_only" is the default. other options: "all" "extra_only" extra_imports = [ { prefix = "10.0.0.0/8", action = "deny" }, { prefix = "11.0.0.0/8", ge_mask = 31, le_mask = 32, action = "deny" },