Skip to content

Commit

Permalink
fix: aws secret import ARN handling. (#597)
Browse files Browse the repository at this point in the history
  • Loading branch information
tjholm authored Mar 20, 2024
1 parent ed88a8d commit 5bb91f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cloud/aws/deploy/secret.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func (a *NitricAwsPulumiProvider) Secret(ctx *pulumi.Context, parent pulumi.Reso
}

if importArn != "" {
secret, err = tagSecret(ctx, importArn, name, awsTags, a.resourceTaggingClient)
secret, err = tagSecret(ctx, name, importArn, awsTags, a.resourceTaggingClient)
} else {
secret, err = createSecret(ctx, name, awsTags)
}
Expand Down

0 comments on commit 5bb91f5

Please sign in to comment.