Skip to content

Commit

Permalink
Upgrade terraform-provider-dbtcloud to v0.3.22 (#171)
Browse files Browse the repository at this point in the history
* make tfgen

* make build_sdks
  • Loading branch information
guineveresaenger authored Nov 8, 2024
1 parent f826040 commit 08824a0
Show file tree
Hide file tree
Showing 33 changed files with 4,184 additions and 3 deletions.
13 changes: 13 additions & 0 deletions provider/cmd/pulumi-resource-dbtcloud/bridge-metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{
"auto-aliasing": {
"resources": {
"dbtcloud_account_features": {
"current": "dbtcloud:index/accountFeatures:AccountFeatures"
},
"dbtcloud_bigquery_connection": {
"current": "dbtcloud:index/bigQueryConnection:BigQueryConnection"
},
Expand Down Expand Up @@ -79,6 +82,14 @@
}
}
},
"dbtcloud_ip_restrictions_rule": {
"current": "dbtcloud:index/ipRestrictionsRule:IpRestrictionsRule",
"fields": {
"cidrs": {
"maxItemsOne": false
}
}
},
"dbtcloud_job": {
"current": "dbtcloud:index/job:Job",
"fields": {
Expand Down Expand Up @@ -428,6 +439,7 @@
"auto-settings": {},
"mux": {
"resources": {
"dbtcloud:index/accountFeatures:AccountFeatures": 1,
"dbtcloud:index/bigQueryConnection:BigQueryConnection": 0,
"dbtcloud:index/bigQueryCredential:BigQueryCredential": 0,
"dbtcloud:index/connection:Connection": 0,
Expand All @@ -441,6 +453,7 @@
"dbtcloud:index/globalConnection:GlobalConnection": 1,
"dbtcloud:index/group:Group": 1,
"dbtcloud:index/groupPartialPermissions:GroupPartialPermissions": 1,
"dbtcloud:index/ipRestrictionsRule:IpRestrictionsRule": 1,
"dbtcloud:index/job:Job": 0,
"dbtcloud:index/licenseMap:LicenseMap": 0,
"dbtcloud:index/lineageIntegration:LineageIntegration": 1,
Expand Down
178 changes: 178 additions & 0 deletions provider/cmd/pulumi-resource-dbtcloud/schema.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion provider/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ toolchain go1.22.3
replace github.com/hashicorp/terraform-plugin-sdk/v2 => github.com/pulumi/terraform-plugin-sdk/v2 v2.0.0-20240520223432-0c0bf0d65f10

require (
github.com/dbt-labs/terraform-provider-dbtcloud v0.3.21
github.com/dbt-labs/terraform-provider-dbtcloud v0.3.22
github.com/pulumi/pulumi-terraform-bridge/v3 v3.94.0
github.com/pulumi/pulumi/sdk/v3 v3.137.0
)
Expand Down
4 changes: 2 additions & 2 deletions provider/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1321,8 +1321,8 @@ github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSs
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM=
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/dbt-labs/terraform-provider-dbtcloud v0.3.21 h1:Tas4jythbeByI1mlPvqwLKuxYcBPtwFIjWZqVHjyKYw=
github.com/dbt-labs/terraform-provider-dbtcloud v0.3.21/go.mod h1:yxU6SKTrwoHnVtkDtjHIjHTl/3Ast0oN6/ugp2LD4lI=
github.com/dbt-labs/terraform-provider-dbtcloud v0.3.22 h1:ERqOasoGm2E87EErr/K4iX7VuAffe5kRiILImNHZZg0=
github.com/dbt-labs/terraform-provider-dbtcloud v0.3.22/go.mod h1:yxU6SKTrwoHnVtkDtjHIjHTl/3Ast0oN6/ugp2LD4lI=
github.com/deckarep/golang-set/v2 v2.6.0 h1:XfcQbWM1LlMB8BsJ8N9vW5ehnnPVIw0je80NsVHagjM=
github.com/deckarep/golang-set/v2 v2.6.0/go.mod h1:VAky9rY/yGXJOLEDv3OMci+7wtDpOF4IN+y82NBOac4=
github.com/djherbis/times v1.6.0 h1:w2ctJ92J8fBvWPxugmXIv7Nz7Q3iDMKNx9v5ocVH20c=
Expand Down
5 changes: 5 additions & 0 deletions provider/resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,11 @@ func Provider(ctx context.Context) tfbridge.ProviderInfo {
"id": {Type: "string"},
},
},
"dbtcloud_ip_restrictions_rule": {
Fields: map[string]*tfbridge.SchemaInfo{
"id": {Type: "string"},
},
},
"dbtcloud_service_token": {
Tok: tfbridge.MakeResource(mainPkg, mainMod, "ServiceToken"),
},
Expand Down
134 changes: 134 additions & 0 deletions sdk/dotnet/AccountFeatures.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

44 changes: 44 additions & 0 deletions sdk/dotnet/Inputs/IpRestrictionsRuleCidrArgs.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

44 changes: 44 additions & 0 deletions sdk/dotnet/Inputs/IpRestrictionsRuleCidrGetArgs.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 08824a0

Please sign in to comment.