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" }, 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" },