Skip to content

Commit bd2a5f2

Browse files
authored
Upgrade to v1.12.1 of the Postgresql Terraform Provider (#118)
1 parent ba55ad3 commit bd2a5f2

File tree

8 files changed

+13
-11
lines changed

8 files changed

+13
-11
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## HEAD (Unreleased)
2-
_(none)_
2+
* Upgrade to v1.12.1 Postgresql Terraform Provider
33

44
---
55

provider/cmd/pulumi-resource-postgresql/schema.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1279,7 +1279,7 @@
12791279
"postgresql": "PostgreSql"
12801280
},
12811281
"packageReferences": {
1282-
"Pulumi": "3.*-*",
1282+
"Pulumi": "3.*",
12831283
"System.Collections.Immutable": "1.6.0"
12841284
}
12851285
},
@@ -1290,7 +1290,7 @@
12901290
"nodejs": {
12911291
"compatibility": "tfbridge20",
12921292
"dependencies": {
1293-
"@pulumi/pulumi": "^3.0.0-alpha.-"
1293+
"@pulumi/pulumi": "^3.0.0"
12941294
},
12951295
"devDependencies": {
12961296
"@types/mime": "^2.0.0",
@@ -1306,7 +1306,7 @@
13061306
"compatibility": "tfbridge20",
13071307
"readme": "\u003e This provider is a derived work of the [Terraform Provider](https://github.com/cyrilgdn/terraform-provider-postgresql)\n\u003e distributed under [MPL 2.0](https://www.mozilla.org/en-US/MPL/2.0/). If you encounter a bug or missing feature,\n\u003e first check the [`pulumi/pulumi-postgresql` repo](https://github.com/pulumi/pulumi-postgresql/issues); however, if that doesn't turn up anything,\n\u003e please consult the source [`cyrilgdn/terraform-provider-postgresql` repo](https://github.com/cyrilgdn/terraform-provider-postgresql/issues).",
13081308
"requires": {
1309-
"pulumi": "\u003e=3.0.0a1,\u003c4.0.0"
1309+
"pulumi": "\u003e=3.0.0,\u003c4.0.0"
13101310
}
13111311
}
13121312
}

provider/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ require (
1010
github.com/pulumi/pulumi/sdk/v3 v3.0.0
1111
)
1212

13-
replace github.com/cyrilgdn/terraform-provider-postgresql => github.com/pulumi/terraform-provider-postgresql v1.12.1-0.20210330162646-5e21079b520e
13+
replace github.com/cyrilgdn/terraform-provider-postgresql => github.com/pulumi/terraform-provider-postgresql v1.12.1-0.20210427104043-992355c7085a

provider/go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -713,6 +713,8 @@ github.com/pulumi/terraform-diff-reader v0.0.0-20201211191010-ad4715e9285e h1:Di
713713
github.com/pulumi/terraform-diff-reader v0.0.0-20201211191010-ad4715e9285e/go.mod h1:sZ9FUzGO+yM41hsQHs/yIcj/Y993qMdBxBU5mpDmAfQ=
714714
github.com/pulumi/terraform-provider-postgresql v1.12.1-0.20210330162646-5e21079b520e h1:RwBCyzNKjVY4r5mi1lwulqMFi0zPqryXpm56Qx4HsP0=
715715
github.com/pulumi/terraform-provider-postgresql v1.12.1-0.20210330162646-5e21079b520e/go.mod h1:AkUW9q5G+E3/IWW2gxKbmN1y9L2AKw1LvPGFG8rtmko=
716+
github.com/pulumi/terraform-provider-postgresql v1.12.1-0.20210427104043-992355c7085a h1:mHZ9sU8Des4bCjkly8CYSQfcC9m4Y6mfF24g0JuRSOo=
717+
github.com/pulumi/terraform-provider-postgresql v1.12.1-0.20210427104043-992355c7085a/go.mod h1:AkUW9q5G+E3/IWW2gxKbmN1y9L2AKw1LvPGFG8rtmko=
716718
github.com/rjeczalik/notify v0.9.2 h1:MiTWrPj55mNDHEiIX5YUSKefw/+lCQVoAFmD6oQm5w8=
717719
github.com/rjeczalik/notify v0.9.2/go.mod h1:aErll2f0sUX9PXZnVNyeiObbmTlk5jnMoCa4QEjJeqM=
718720
github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af h1:gu+uRPtBe88sKxUCEXRoeCvVG90TJmwhiqRpvdhQFng=

provider/resources.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ func Provider() tfbridge.ProviderInfo {
108108
DataSources: map[string]*tfbridge.DataSourceInfo{},
109109
JavaScript: &tfbridge.JavaScriptInfo{
110110
Dependencies: map[string]string{
111-
"@pulumi/pulumi": "^3.0.0-alpha.-",
111+
"@pulumi/pulumi": "^3.0.0",
112112
},
113113
DevDependencies: map[string]string{
114114
"@types/node": "^10.0.0", // so we can access strongly typed node definitions.
@@ -117,7 +117,7 @@ func Provider() tfbridge.ProviderInfo {
117117
},
118118
Python: &tfbridge.PythonInfo{
119119
Requires: map[string]string{
120-
"pulumi": ">=3.0.0a1,<4.0.0",
120+
"pulumi": ">=3.0.0,<4.0.0",
121121
},
122122
},
123123
Golang: &tfbridge.GolangInfo{
@@ -131,7 +131,7 @@ func Provider() tfbridge.ProviderInfo {
131131
},
132132
CSharp: &tfbridge.CSharpInfo{
133133
PackageReferences: map[string]string{
134-
"Pulumi": "3.*-*",
134+
"Pulumi": "3.*",
135135
"System.Collections.Immutable": "1.6.0",
136136
},
137137
Namespaces: map[string]string{

sdk/dotnet/Pulumi.PostgreSql.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
</ItemGroup>
3636

3737
<ItemGroup>
38-
<PackageReference Include="Pulumi" Version="3.*-*" />
38+
<PackageReference Include="Pulumi" Version="3.*" />
3939
<PackageReference Include="System.Collections.Immutable" Version="1.6.0" />
4040
</ItemGroup>
4141

sdk/nodejs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"build": "tsc"
1414
},
1515
"dependencies": {
16-
"@pulumi/pulumi": "^3.0.0-alpha.-"
16+
"@pulumi/pulumi": "^3.0.0"
1717
},
1818
"devDependencies": {
1919
"@types/mime": "^2.0.0",

sdk/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def readme():
5353
},
5454
install_requires=[
5555
'parver>=0.2.1',
56-
'pulumi>=3.0.0a1,<4.0.0',
56+
'pulumi>=3.0.0,<4.0.0',
5757
'semver>=2.8.1'
5858
],
5959
zip_safe=False)

0 commit comments

Comments
 (0)