-
Notifications
You must be signed in to change notification settings - Fork 36
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Hey,
similar to #212 and the fix introduced in d1d8cc5, I believe a similar change would be required for RADIUS. Currently, code like this also triggers idempotency issues:
resource "random_password" "radius_password" {
length = 16
special = false
}
resource "iosxe_radius" "packetfence_radius_server" {
name = "packetfence"
ipv4_address = "10.1.40.10"
authentication_port = 1812
accounting_port = 1813
key = random_password.radius_password.result
}
Same applies when using a hardcoded value instead of a generated password.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request