-
-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature request: serial secondary cluster node #587
Comments
Hi 👋 This information is not available in system-information response. Have you try to configure a secondary provider with management IP of secondary node to read this information ? provider "junos" {
ip = "<primary_ip>"
}
data "junos_system_information" "primary" {}
output "primary_serial_number" {
value = data.junos_system_information.primary.serial_number
}
provider "junos" {
alias = "secondary"
ip = "<secondary_ip>"
}
data "junos_system_information" "secondary" {
provider = junos.secondary
}
output "secondary_serial_number" {
value = data.junos_system_information.secondary.serial_number
} |
thank you for that suggestion and your time! In our case we connect only using the shared cluster ip for administrative reasons.
|
Hi 👋 After some tests, a RPC request I'll take care of adding that. |
Description
Would it be possible to expand the current system information datasource to provide the serial number of the secondary node in a chassis cluster?
New or Affected Resource(s)
The text was updated successfully, but these errors were encountered: