-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: 💥 refactor to use official astronomer terraform provider
New upstream terraform provider
- Loading branch information
Showing
225 changed files
with
39,585 additions
and
6,241 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
go 1.21.5 | ||
go 1.21.12 | ||
|
||
use ( | ||
./provider | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
525 changes: 502 additions & 23 deletions
525
provider/cmd/pulumi-resource-astronomer/bridge-metadata.json
Large diffs are not rendered by default.
Oops, something went wrong.
5,418 changes: 4,659 additions & 759 deletions
5,418
provider/cmd/pulumi-resource-astronomer/schema.json
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,55 @@ | ||
module github.com/GK-Consulting/terraform-provider-astronomer/shim | ||
module github.com/astronomer/terraform-provider-astro/shim | ||
|
||
go 1.21.5 | ||
|
||
toolchain go1.21.6 | ||
|
||
replace ( | ||
github.com/GK-Consulting/terraform-provider-astronomer => ../../upstream | ||
github.com/openglshaders/astronomer-api/v2 => ../../upstream/internal/api | ||
terraform-provider-astronomer => github.com/ryan-pip/terraform-provider-astronomer v0.0.0-00010101000000-000000000000 | ||
) | ||
|
||
require ( | ||
github.com/GK-Consulting/terraform-provider-astronomer v0.0.0-00010101000000-000000000000 | ||
github.com/hashicorp/terraform-plugin-framework v1.4.2 | ||
github.com/ryan-pip/pulumi-astronomer/provider v0.0.0-20240311084552-d5ad20b3423b | ||
github.com/astronomer/terraform-provider-astro v0.3.0 | ||
github.com/hashicorp/terraform-plugin-framework v1.9.0 | ||
github.com/ryan-pip/pulumi-astronomer/provider v0.0.0-20240607020557-47813651c291 | ||
) | ||
|
||
require ( | ||
github.com/fatih/color v1.15.0 // indirect | ||
github.com/hashicorp/go-hclog v1.5.0 // indirect | ||
github.com/hashicorp/terraform-plugin-go v0.19.1 // indirect | ||
github.com/agext/levenshtein v1.2.3 // indirect | ||
github.com/apapsch/go-jsonmerge/v2 v2.0.0 // indirect | ||
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect | ||
github.com/fatih/color v1.16.0 // indirect | ||
github.com/golang/protobuf v1.5.4 // indirect | ||
github.com/google/uuid v1.6.0 // indirect | ||
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320 // indirect | ||
github.com/hashicorp/go-hclog v1.6.3 // indirect | ||
github.com/hashicorp/go-plugin v1.6.0 // indirect | ||
github.com/hashicorp/go-uuid v1.0.3 // indirect | ||
github.com/hashicorp/hcl/v2 v2.20.1 // indirect | ||
github.com/hashicorp/terraform-plugin-framework-timeouts v0.4.1 // indirect | ||
github.com/hashicorp/terraform-plugin-framework-validators v0.12.0 // indirect | ||
github.com/hashicorp/terraform-plugin-go v0.23.0 // indirect | ||
github.com/hashicorp/terraform-plugin-log v0.9.0 // indirect | ||
github.com/hashicorp/terraform-plugin-sdk/v2 v2.34.0 // indirect | ||
github.com/hashicorp/terraform-plugin-testing v1.8.0 // indirect | ||
github.com/hashicorp/terraform-registry-address v0.2.3 // indirect | ||
github.com/hashicorp/terraform-svchost v0.1.1 // indirect | ||
github.com/hashicorp/yamux v0.1.1 // indirect | ||
github.com/lucsky/cuid v1.2.1 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.19 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/mitchellh/go-testing-interface v1.14.1 // indirect | ||
github.com/openglshaders/astronomer-api/v2 v2.0.0-00010101000000-000000000000 // indirect | ||
github.com/mitchellh/go-wordwrap v1.0.1 // indirect | ||
github.com/oapi-codegen/runtime v1.1.1 // indirect | ||
github.com/oklog/run v1.1.0 // indirect | ||
github.com/samber/lo v1.39.0 // indirect | ||
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect | ||
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect | ||
golang.org/x/sys v0.16.0 // indirect | ||
github.com/zclconf/go-cty v1.14.4 // indirect | ||
golang.org/x/crypto v0.23.0 // indirect | ||
golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa // indirect | ||
golang.org/x/mod v0.17.0 // indirect | ||
golang.org/x/net v0.23.0 // indirect | ||
golang.org/x/sys v0.20.0 // indirect | ||
golang.org/x/text v0.15.0 // indirect | ||
golang.org/x/tools v0.17.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240227224415-6ceb2ff114de // indirect | ||
google.golang.org/grpc v1.63.2 // indirect | ||
google.golang.org/protobuf v1.34.0 // indirect | ||
) |
Oops, something went wrong.