Skip to content

Commit 7bfa9c1

Browse files
committed
Adjust go code to use new repository
Signed-off-by: Alexander Dahmen <[email protected]>
1 parent a42c68f commit 7bfa9c1

File tree

132 files changed

+143
-143
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

132 files changed

+143
-143
lines changed

.goreleaser.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ builds:
2020
- linux
2121
ldflags:
2222
# The line below MUST align with the module in current provider/go.mod
23-
- -X github.com/dirien/pulumi-stackit/provider/pkg/version.Version={{.Tag }}
23+
- -X github.com/stackitcloud/pulumi-stackit/provider/pkg/version.Version={{.Tag }}
2424
main: ./cmd/pulumi-resource-stackit/
2525

2626
signs:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PROJECT_NAME := stackit Package
22

33
SHELL := /bin/bash
44
PACK := stackit
5-
ORG := dirien
5+
ORG := stackitcloud
66
PROJECT := github.com/${ORG}/pulumi-${PACK}
77
NODE_MODULE_NAME := @pulumi/${PACK}
88
TF_NAME := ${PACK}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ pip install ediri_stackit
3535
To use from Go, use `go get` to grab the latest version of the library:
3636

3737
```bash
38-
go get github.com/dirien/pulumi-stackit/sdk
38+
go get github.com/stackitcloud/pulumi-stackit/sdk
3939
```
4040

4141
### .NET

examples/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/dirien/pulumi-stackit/examples
1+
module github.com/stackitcloud/pulumi-stackit/examples
22

33
go 1.23.0
44

examples/stackit-go/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ go 1.23.0
55
toolchain go1.24.2
66

77
require (
8-
github.com/dirien/pulumi-stackit/sdk v0.1.0
8+
github.com/stackitcloud/pulumi-stackit/sdk v0.1.0
99
github.com/pulumi/pulumi/sdk/v3 v3.181.0
1010
)
1111

12-
replace github.com/dirien/pulumi-stackit/sdk => ../../sdk
12+
replace github.com/stackitcloud/pulumi-stackit/sdk => ../../sdk
1313

1414
require (
1515
dario.cat/mergo v1.0.0 // indirect

examples/stackit-go/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package main
22

33
import (
4-
"github.com/dirien/pulumi-stackit/sdk/go/stackit"
54
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
5+
"github.com/stackitcloud/pulumi-stackit/sdk/go/stackit"
66
)
77

88
func main() {

provider/cmd/pulumi-resource-stackit/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ package main
1919
import (
2020
"context"
2121
_ "embed"
22-
stackit "github.com/dirien/pulumi-stackit/provider"
22+
stackit "github.com/stackitcloud/pulumi-stackit/provider"
2323
"github.com/pulumi/pulumi-terraform-bridge/v3/pkg/pf/tfbridge"
2424
)
2525

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"homepage": "https://www.pulumi.com",
1111
"license": "Apache-2.0",
1212
"attribution": "This Pulumi package is based on the [`stackit` Terraform Provider](https://github.com/stackitcloud/terraform-provider-stackit).",
13-
"repository": "https://github.com/dirien/pulumi-stackit",
14-
"pluginDownloadURL": "github://api.github.com/dirien/pulumi-stackit",
15-
"publisher": "dirien",
13+
"repository": "https://github.com/stackitcloud/pulumi-stackit",
14+
"pluginDownloadURL": "github://api.github.com/stackitcloud/pulumi-stackit",
15+
"publisher": "stackitcloud",
1616
"meta": {
1717
"moduleFormat": "(.*)(?:/[^/]*)"
1818
},
@@ -25,14 +25,14 @@
2525
"rootNamespace": "ediri"
2626
},
2727
"go": {
28-
"importBasePath": "github.com/dirien/pulumi-stackit/sdk/go/stackit",
28+
"importBasePath": "github.com/stackitcloud/pulumi-stackit/sdk/go/stackit",
2929
"generateResourceContainerTypes": true,
3030
"generateExtraInputTypes": true
3131
},
3232
"nodejs": {
3333
"packageName": "@ediri/pulumi-stackit",
3434
"packageDescription": "A Pulumi package for creating and managing stackit resources.",
35-
"readme": "\u003e This provider is a derived work of the [Terraform Provider](https://github.com/stackitcloud/terraform-provider-stackit)\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-stackit` repo](https://github.com/dirien/pulumi-stackit/issues); however, if that doesn't turn up anything,\n\u003e please consult the source [`terraform-provider-stackit` repo](https://github.com/stackitcloud/terraform-provider-stackit/issues).",
35+
"readme": "\u003e This provider is a derived work of the [Terraform Provider](https://github.com/stackitcloud/terraform-provider-stackit)\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-stackit` repo](https://github.com/stackitcloud/pulumi-stackit/issues); however, if that doesn't turn up anything,\n\u003e please consult the source [`terraform-provider-stackit` repo](https://github.com/stackitcloud/terraform-provider-stackit/issues).",
3636
"dependencies": {
3737
"@pulumi/pulumi": "^3.0.0"
3838
},
@@ -48,7 +48,7 @@
4848
"requires": {
4949
"pulumi": "\u003e=3.0.0,\u003c4.0.0"
5050
},
51-
"readme": "\u003e This provider is a derived work of the [Terraform Provider](https://github.com/stackitcloud/terraform-provider-stackit)\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-stackit` repo](https://github.com/dirien/pulumi-stackit/issues); however, if that doesn't turn up anything,\n\u003e please consult the source [`terraform-provider-stackit` repo](https://github.com/stackitcloud/terraform-provider-stackit/issues).",
51+
"readme": "\u003e This provider is a derived work of the [Terraform Provider](https://github.com/stackitcloud/terraform-provider-stackit)\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-stackit` repo](https://github.com/stackitcloud/pulumi-stackit/issues); however, if that doesn't turn up anything,\n\u003e please consult the source [`terraform-provider-stackit` repo](https://github.com/stackitcloud/terraform-provider-stackit/issues).",
5252
"compatibility": "tfbridge20",
5353
"pyproject": {}
5454
}

provider/cmd/pulumi-tfgen-stackit/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
package main
1616

1717
import (
18-
stackit "github.com/dirien/pulumi-stackit/provider"
18+
stackit "github.com/stackitcloud/pulumi-stackit/provider"
1919
"github.com/pulumi/pulumi-terraform-bridge/v3/pkg/pf/tfgen"
2020
)
2121

provider/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/dirien/pulumi-stackit/provider
1+
module github.com/stackitcloud/pulumi-stackit/provider
22

33
go 1.24
44

0 commit comments

Comments
 (0)