Skip to content

Commit

Permalink
Fix update of Certificate
Browse files Browse the repository at this point in the history
  • Loading branch information
koendelaat authored Sep 20, 2024
1 parent 8556677 commit 39db6fa
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions internal/services/iam/service/resource_iam_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,7 @@ func resourceIAMServiceUpdate(ctx context.Context, d *schema.ResourceData, m int
var s iam.Service
s.ID = d.Id()
s.ServiceID = d.Get("service_id").(string)
s.Name = d.Get("name").(string)

if d.HasChange("token_validity") || d.HasChange("description") {
tokenValidity := d.Get("token_validity").(int)
Expand Down

0 comments on commit 39db6fa

Please sign in to comment.