jeremmfr / terraform-provider-junos

Terraform provider for Junos devices
https://registry.terraform.io/providers/jeremmfr/junos
MIT License
62 stars 22 forks source link

Feature request: add support for multi-chassis #576

Closed NikitaPuglachenko closed 11 months ago

NikitaPuglachenko commented 12 months ago

Description

Add support for multi-chassis

New or Affected Resource(s)

New: junos_multi_chassis junos_multi_chassis_peer

Potential Terraform Configuration

resource "junos_multi_chassis" "multi_chassis" {
  mc_lag {                       # Optional, Block
    comparison_delay_time = 1    # Optional, Number, (5..600 seconds)
  }
}

resource "junos_multi_chassis_peer" "multi_chassis_peer_demo" {
  name           = "192.0.2.5"   # Required, String
  icl-down-delay = 1             # Optional, Number, (1..6000 seconds)
  interface      = "ae1"         # Optional, String
}

References

https://www.juniper.net/documentation/us/en/software/junos/mc-lag/topics/ref/statement/multi-chassis-qfx-series.html https://www.juniper.net/documentation/us/en/software/junos/mc-lag/topics/ref/statement/multi-chassis-protection.html

jeremmfr commented 11 months ago

Hi 👋

I will take care of adding this.