generated from pulumi/pulumi-tf-provider-boilerplate
-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add PluginDownloadUrl for GitHub releases
- Loading branch information
Showing
109 changed files
with
685 additions
and
108 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 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
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
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"resource": true, | ||
"name": "proxmoxve", | ||
"server": "https://github.com/muhlba91/pulumi-proxmoxve/releases/download/v${VERSION}" | ||
} |
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 +1 @@ | ||
0.0.1-alpha.1637516154+bcc93c62.dirty | ||
0.0.1-alpha.1639643795+7e695cee.dirty |
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
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
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
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 |
---|---|---|
@@ -0,0 +1,99 @@ | ||
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** | ||
// *** Do not edit by hand unless you're certain you know what you are doing! *** | ||
|
||
package cluster | ||
|
||
import ( | ||
"fmt" | ||
"os" | ||
"reflect" | ||
"regexp" | ||
"strconv" | ||
"strings" | ||
|
||
"github.com/blang/semver" | ||
"github.com/pulumi/pulumi/sdk/v3/go/pulumi" | ||
) | ||
|
||
type envParser func(v string) interface{} | ||
|
||
func parseEnvBool(v string) interface{} { | ||
b, err := strconv.ParseBool(v) | ||
if err != nil { | ||
return nil | ||
} | ||
return b | ||
} | ||
|
||
func parseEnvInt(v string) interface{} { | ||
i, err := strconv.ParseInt(v, 0, 0) | ||
if err != nil { | ||
return nil | ||
} | ||
return int(i) | ||
} | ||
|
||
func parseEnvFloat(v string) interface{} { | ||
f, err := strconv.ParseFloat(v, 64) | ||
if err != nil { | ||
return nil | ||
} | ||
return f | ||
} | ||
|
||
func parseEnvStringArray(v string) interface{} { | ||
var result pulumi.StringArray | ||
for _, item := range strings.Split(v, ";") { | ||
result = append(result, pulumi.String(item)) | ||
} | ||
return result | ||
} | ||
|
||
func getEnvOrDefault(def interface{}, parser envParser, vars ...string) interface{} { | ||
for _, v := range vars { | ||
if value := os.Getenv(v); value != "" { | ||
if parser != nil { | ||
return parser(value) | ||
} | ||
return value | ||
} | ||
} | ||
return def | ||
} | ||
|
||
// PkgVersion uses reflection to determine the version of the current package. | ||
func PkgVersion() (semver.Version, error) { | ||
type sentinal struct{} | ||
pkgPath := reflect.TypeOf(sentinal{}).PkgPath() | ||
re := regexp.MustCompile("^.*/pulumi-proxmoxve/sdk(/v\\d+)?") | ||
if match := re.FindStringSubmatch(pkgPath); match != nil { | ||
vStr := match[1] | ||
if len(vStr) == 0 { // If the version capture group was empty, default to v1. | ||
return semver.Version{Major: 1}, nil | ||
} | ||
return semver.MustParse(fmt.Sprintf("%s.0.0", vStr[2:])), nil | ||
} | ||
return semver.Version{}, fmt.Errorf("failed to determine the package version from %s", pkgPath) | ||
} | ||
|
||
// isZero is a null safe check for if a value is it's types zero value. | ||
func isZero(v interface{}) bool { | ||
if v == nil { | ||
return true | ||
} | ||
return reflect.ValueOf(v).IsZero() | ||
} | ||
|
||
// pkgResourceDefaultOpts provides package level defaults to pulumi.OptionResource. | ||
func pkgResourceDefaultOpts(opts []pulumi.ResourceOption) []pulumi.ResourceOption { | ||
defaults := []pulumi.ResourceOption{pulumi.PluginDownloadURL("https://github.com/muhlba91/pulumi-proxmoxve/releases/download/v${VERSION}")} | ||
|
||
return append(defaults, opts...) | ||
} | ||
|
||
// pkgInvokeDefaultOpts provides package level defaults to pulumi.OptionInvoke. | ||
func pkgInvokeDefaultOpts(opts []pulumi.InvokeOption) []pulumi.InvokeOption { | ||
defaults := []pulumi.InvokeOption{pulumi.PluginDownloadURL("https://github.com/muhlba91/pulumi-proxmoxve/releases/download/v${VERSION}")} | ||
|
||
return append(defaults, opts...) | ||
} |
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
Oops, something went wrong.