Skip to content

RADIUS Key Encryption Support #248

@waza-ari

Description

@waza-ari

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

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions