CiscoDevNet / terraform-provider-sdwan

Terraform Cisco SD-WAN Provider
https://registry.terraform.io/providers/CiscoDevNet/sdwan
Mozilla Public License 2.0
17 stars 11 forks source link

[UX2.0] Remote Access parcel configuration is not correct #265

Open tzarski0 opened 3 weeks ago

tzarski0 commented 3 weeks ago

Few problems:

  1. Some options available in resource are not available in GUI.
  2. When I configure the remote access over the UI, I see lot's of options/switches available. However if I configure remote access over terraform and then go to edit in GUI, some options are not available (most radio buttons don't show up at all).

Here's the resource I used:

  + resource "sdwan_system_remote_access_profile_parcel" "system_remote_access_profile_parcel" {
      + aaa_enable_accounting               = true
      + aaa_specify_name_policy_name        = "policy-test-name"
      + aaa_specify_name_policy_password    = "ihuCmug14AFrcEJD"
      + any_connect_eap_authentication_type = "device"
      + connection_type_ssl                 = true
      + description                         = "remote access parcel with full configuration"
      + enable_crl_check                    = true
      + feature_profile_id                  = (known after apply)
      + id                                  = (known after apply)
      + ikev2_anti_dos_threshold            = 1000
      + ikev2_local_ike_identity_type       = "IPv4 ADDRESS"
      + ikev2_local_ike_identity_value      = "10.1.1.1"
      + ikev2_security_association_lifetime = 86400
      + ipsec_anti_replay_window_size       = 512
      + ipsec_enable_anti_replay            = true
      + ipsec_enable_perfect_foward_secrecy = true
      + ipsec_security_association_lifetime = 86400
      + ipv4_pool_size                      = 500
      + ipv6_pool_size                      = 512
      + name                                = "remote_access_full"
      + psk_authentication_pre_shared_key   = "ginvjjBev1K6wIsi"
      + psk_authentication_type             = "group"
      + radius_group_name                   = "radius-0"
      + version                             = (known after apply)
    }
seconroy commented 3 weeks ago

This seems to be occurring when connection_type_ssl is true, switching it to false should fix the UI options/switches issue while I continue to look into it