Skip to content

Commit

Permalink
Merge pull request #431 from koendelaat/patch-1
Browse files Browse the repository at this point in the history
Fix update of Certificate
  • Loading branch information
loafoe authored Sep 20, 2024
2 parents 8556677 + 39db6fa commit 433861a
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 433861a

Please sign in to comment.