Skip to content

Commit

Permalink
Update 0.6.3 (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbyiliev authored Feb 5, 2024
1 parent aedb5d0 commit 65bbd2f
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
CHANGELOG
=========

## 0.1.3 - 2024-02-02
Update to Terraform Provider [0.6.3](https://github.com/MaterializeInc/terraform-provider-materialize/releases/tag/v0.6.3).

## 0.1.2 - 2024-02-01
Update to Terraform Provider [0.6.1](https://github.com/MaterializeInc/terraform-provider-materialize/releases/tag/v0.6.1).

Expand Down
22 changes: 22 additions & 0 deletions provider/cmd/pulumi-resource-materialize/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,15 @@
},
"config": {
"variables": {
"baseEndpoint": {
"type": "string",
"description": "The base endpoint for Materialize.\n",
"defaultInfo": {
"environment": [
"MZ_BASE_ENDPOINT"
]
}
},
"cloudEndpoint": {
"type": "string",
"description": "The endpoint for the Materialize Cloud API.\n",
Expand Down Expand Up @@ -2603,6 +2612,10 @@
"provider": {
"description": "The provider type for the materialize package. By default, resources use package-wide configuration\nsettings, however an explicit `Provider` instance may be created and passed during resource\nconstruction to achieve fine-grained programmatic control over provider settings. See the\n[documentation](https://www.pulumi.com/docs/reference/programming-model/#providers) for more information.\n",
"properties": {
"baseEndpoint": {
"type": "string",
"description": "The base endpoint for Materialize.\n"
},
"cloudEndpoint": {
"type": "string",
"description": "The endpoint for the Materialize Cloud API.\n"
Expand Down Expand Up @@ -2630,6 +2643,15 @@
}
},
"inputProperties": {
"baseEndpoint": {
"type": "string",
"description": "The base endpoint for Materialize.\n",
"defaultInfo": {
"environment": [
"MZ_BASE_ENDPOINT"
]
}
},
"cloudEndpoint": {
"type": "string",
"description": "The endpoint for the Materialize Cloud API.\n",
Expand Down
2 changes: 1 addition & 1 deletion provider/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.18
replace github.com/hashicorp/terraform-plugin-sdk/v2 => github.com/pulumi/terraform-plugin-sdk/v2 v2.0.0-20230912190043-e6d96b3b8f7e

require (
github.com/MaterializeInc/terraform-provider-materialize v0.6.1
github.com/MaterializeInc/terraform-provider-materialize v0.6.3
github.com/pulumi/pulumi-terraform-bridge/v3 v3.59.0
github.com/pulumi/pulumi/sdk/v3 v3.81.0
)
Expand Down
4 changes: 2 additions & 2 deletions provider/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -715,8 +715,8 @@ github.com/Masterminds/semver/v3 v3.2.0/go.mod h1:qvl/7zhW3nngYb5+80sSMF+FG2BjYr
github.com/Masterminds/sprig/v3 v3.2.1/go.mod h1:UoaO7Yp8KlPnJIYWTFkMaqPUYKTfGFPhxNuwnnxkKlk=
github.com/Masterminds/sprig/v3 v3.2.3 h1:eL2fZNezLomi0uOLqjQoN6BfsDD+fyLtgbJMAj9n6YA=
github.com/Masterminds/sprig/v3 v3.2.3/go.mod h1:rXcFaZ2zZbLRJv/xSysmlgIM1u11eBaRMhvYXJNkGuM=
github.com/MaterializeInc/terraform-provider-materialize v0.6.1 h1:eoZ6FVAsIVcBLPAG4sqkwZnxEXDnSMOeg04MnY8anQc=
github.com/MaterializeInc/terraform-provider-materialize v0.6.1/go.mod h1:aXyDOh5mtxAv7ZFJeuqmZoGmI1JABo05Qk4vgNeDK64=
github.com/MaterializeInc/terraform-provider-materialize v0.6.3 h1:Rba/TrJw4DBLrTwWhw2cHbNoZecH+Ryx38BIocNW+Wk=
github.com/MaterializeInc/terraform-provider-materialize v0.6.3/go.mod h1:aXyDOh5mtxAv7ZFJeuqmZoGmI1JABo05Qk4vgNeDK64=
github.com/Microsoft/go-winio v0.4.11/go.mod h1:VhR8bwka0BXejwEJY73c50VrPtXAaKcyvVC4A4RozmA=
github.com/Microsoft/go-winio v0.4.14/go.mod h1:qXqCSQ3Xa7+6tgxaGTIe4Kpcdsi+P8jBhyzoq1bpyYA=
github.com/Microsoft/go-winio v0.4.15-0.20190919025122-fc70bd9a86b5/go.mod h1:tTuCMEN+UleMWgg9dVx4Hu52b1bJo+59jBh3ajtinzw=
Expand Down
3 changes: 3 additions & 0 deletions provider/resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ func Provider() tfbridge.ProviderInfo {
"cloud_endpoint": {
Default: &tfbridge.DefaultInfo{EnvVars: []string{"MZ_CLOUD_ENDPOINT"}},
},
"base_endpoint": {
Default: &tfbridge.DefaultInfo{EnvVars: []string{"MZ_BASE_ENDPOINT"}},
},
"default_region": {
Default: &tfbridge.DefaultInfo{EnvVars: []string{"MZ_DEFAULT_REGION"}},
},
Expand Down

0 comments on commit 65bbd2f

Please sign in to comment.