Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
pggb25 committed Oct 15, 2024
1 parent b523bce commit b764ee4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ require (
github.com/hashicorp/terraform-plugin-log v0.9.0
github.com/hashicorp/terraform-plugin-sdk/v2 v2.29.0
github.com/pkg/errors v0.9.1
github.com/qovery/qovery-client-go v0.0.0-20241014070758-df74f521cb22
github.com/qovery/qovery-client-go v0.0.0-20241015070009-fd829b77b269
github.com/schollz/progressbar/v3 v3.13.0
github.com/sethvargo/go-envconfig v0.9.0
github.com/stretchr/testify v1.9.0
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,8 @@ github.com/qovery/qovery-client-go v0.0.0-20241008150925-aa04cba97a04 h1:bQf+9U+
github.com/qovery/qovery-client-go v0.0.0-20241008150925-aa04cba97a04/go.mod h1:9eHj5a4EtXGIyfbvVL3HVYW9k7Xmiwi00OqHrP4dc10=
github.com/qovery/qovery-client-go v0.0.0-20241014070758-df74f521cb22 h1:R6H453+5RqQK5biKfP2UD2H5x0s1tTh3GPgPWtq0McY=
github.com/qovery/qovery-client-go v0.0.0-20241014070758-df74f521cb22/go.mod h1:9eHj5a4EtXGIyfbvVL3HVYW9k7Xmiwi00OqHrP4dc10=
github.com/qovery/qovery-client-go v0.0.0-20241015070009-fd829b77b269 h1:S3MvU7iFnSScnYU3hB0vb68aMB6IHcNT3cr+AViyA84=
github.com/qovery/qovery-client-go v0.0.0-20241015070009-fd829b77b269/go.mod h1:9eHj5a4EtXGIyfbvVL3HVYW9k7Xmiwi00OqHrP4dc10=
github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
github.com/rivo/uniseg v0.4.3 h1:utMvzDsuh3suAEnhH0RdHmoPbU648o6CvXxTx4SBMOw=
github.com/rivo/uniseg v0.4.3/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88=
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func newDomainEnvSecretFromQovery(v *qovery.VariableResponse) (*secret.Secret, e
func newQoveryEnvSecretEditRequestFromDomain(request secret.UpsertRequest) qovery.VariableEditRequest {
return qovery.VariableEditRequest{
Key: request.Key,
Value: request.Value,
Value: *qovery.NewNullableString(&request.Value),
Description: *qovery.NewNullableString(&request.Description),
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func newDomainEnvVariableFromQovery(v *qovery.VariableResponse) (*variable.Varia
func newQoveryEnvVariableEditRequestFromDomain(request variable.UpsertRequest) qovery.VariableEditRequest {
return qovery.VariableEditRequest{
Key: request.Key,
Value: request.Value,
Value: *qovery.NewNullableString(&request.Value),
Description: *qovery.NewNullableString(&request.Description),
}
}

0 comments on commit b764ee4

Please sign in to comment.