-
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add junos_security_address_book_ordered resource
copy of junos_security_address_book resource but with Block List instead of Block Set to have a workaround for the performance issue on Terraform plan with many Block Sets workaround for #498
- Loading branch information
Showing
8 changed files
with
818 additions
and
217 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
page_title: "Junos: junos_security_address_book_ordered" | ||
--- | ||
|
||
# junos_security_address_book_ordered | ||
|
||
It has the same functionality as the `junos_security_address_book` resource | ||
but with `network_address`, `dns_name`, `range_address`, `wildcard_address` and `address_set` | ||
arguments as Block List instead of Block Set. | ||
|
||
This provides a workaround for the performance issue on Terraform plan with many Block Sets | ||
(details in GitHub issue [#775](https://github.com/hashicorp/terraform-plugin-framework/issues/775)) | ||
but Block List involves: | ||
|
||
- a change in the order of the blocks triggers a resource change. | ||
- Terraform plan output can be complex when the number of blocks on the resource changes. | ||
|
||
See the [junos_security_address_book](security_address_book) resource | ||
for more details on arguments or attributes. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.