Skip to content

Commit

Permalink
[bugfix] Fix fex and micro_seg_vlan attributes in resource_mso_schema…
Browse files Browse the repository at this point in the history
…_site_anp_epg_bulk_staticport to be correctly set when index shift occur in teh static_ports list
  • Loading branch information
akinross committed Oct 31, 2024
1 parent acf471d commit cfdfd8f
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions mso/resource_mso_schema_site_anp_epg_bulk_staticport.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,15 +101,19 @@ func resourceMSOSchemaSiteAnpEpgBulkStaticPort() *schema.Resource {
}, false),
},
"fex": {
Type: schema.TypeString,
Optional: true,
Computed: true,
Type: schema.TypeString,
Optional: true,
// Remove computed because when a user updates the list and causes index shifts
// the fex state value will be used at the location of the list index when not provided in config.
// Computed: true,
ValidateFunc: validation.StringIsNotEmpty,
},
"micro_seg_vlan": {
Type: schema.TypeInt,
Optional: true,
Computed: true,
// Remove computed because when a user updates the list and causes index shifts
// the micro_seg_vlan state value will be used at the location of the list index when not provided in config.
// Computed: true,
},
"mode": {
Type: schema.TypeString,
Expand Down

0 comments on commit cfdfd8f

Please sign in to comment.