-
-
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.
Merge pull request #607 from jeremmfr/main
Release v2.4.0
- Loading branch information
Showing
185 changed files
with
8,113 additions
and
2,768 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
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
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
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
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,63 @@ | ||
--- | ||
page_title: "Junos: junos_forwardingoptions_storm_control_profile" | ||
--- | ||
|
||
# junos_forwardingoptions_storm_control_profile | ||
|
||
Provides a forwarding-options storm-control-profile resource. | ||
|
||
## Example Usage | ||
|
||
```hcl | ||
# Add a forwarding-options storm-control-profile | ||
resource "junos_forwardingoptions_storm_control_profile" "demo" { | ||
name = "demo" | ||
action_shutdown = true | ||
all { | ||
bandwidth_percentage = 80 | ||
} | ||
} | ||
``` | ||
|
||
## Argument Reference | ||
|
||
The following arguments are supported: | ||
|
||
- **name** (Required, String, Forces new resource) | ||
Storm control profile name. | ||
- **all** (Required, Block) | ||
For all BUM traffic. | ||
- **bandwidth_level** (Optional, Number) | ||
Link bandwidth (100..100000000 kbps). | ||
- **bandwidth_percentage** (Optional, Number) | ||
Percentage of link bandwidth (1..100). | ||
- **burst_size** (Optional, Number) | ||
Burst size (1500..100000000 bytes). | ||
- **no_broadcast** (Optional, Boolean) | ||
Disable broadcast storm control. | ||
- **no_multicast** (Optional, Boolean) | ||
Disable multicast storm control. | ||
- **no_registered_multicast** (Optional, Boolean) | ||
Disable registered multicast storm control. | ||
- **no_unknown_unicast** (Optional, Boolean) | ||
Disable unknown unicast storm control. | ||
- **no_unregistered_multicast** (Optional, Boolean) | ||
Disable unregistered multicast storm control. | ||
- **action_shutdown** (Optional, Boolean) | ||
Disable port for excessive storm control errors. | ||
|
||
## Attributes Reference | ||
|
||
The following attributes are exported: | ||
|
||
- **id** (String) | ||
An identifier for the resource with format `<name>`. | ||
|
||
## Import | ||
|
||
Junos forwarding-options storm-control-profile can be imported using an id made up of | ||
`<name>`, e.g. | ||
|
||
```shell | ||
$ terraform import junos_forwardingoptions_storm_control_profile.demo demo | ||
``` |
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,47 @@ | ||
--- | ||
page_title: "Junos: junos_iccp" | ||
--- | ||
|
||
# junos_iccp | ||
|
||
-> **Note:** This resource should only be created **once**. | ||
It's used to configure static (not object) options in `protocols iccp` block. | ||
|
||
Configure static configuration in `protocols iccp` block. | ||
|
||
## Example Usage | ||
|
||
```hcl | ||
# Configure protocol ICCP | ||
resource "junos_iccp" "iccp" { | ||
local_ip_addr = "192.0.2.1" | ||
authentication_key = "a_key" | ||
session_establishment_hold_time = 300 | ||
} | ||
``` | ||
|
||
## Argument Reference | ||
|
||
The following arguments are supported: | ||
|
||
- **local_ip_addr** (Required, String) | ||
Local IP address to use by default for all peers. | ||
- **authentication_key** (Optional, String, Sensitive) | ||
MD5 authentication key for all peers. | ||
- **session_establishment_hold_time** (Optional, Number) | ||
Time within which connection must succeed with peers (45..600 seconds). | ||
|
||
## Attributes Reference | ||
|
||
The following attributes are exported: | ||
|
||
- **id** (String) | ||
An identifier for the resource with value `iccp`. | ||
|
||
## Import | ||
|
||
Junos protocols ICCP can be imported using any id, e.g. | ||
|
||
```shell | ||
$ terraform import junos_iccp.iccp random | ||
``` |
Oops, something went wrong.