-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pkg/terraform/exec/plugins: vendor in random and local tf provider
The random provider is needed for azure to generate a storage account name that is unique across azure. storage account names also have extra naming restrictions. is used to keep this in the package and avoid passing an extra parameter as a variable. The local provider is necessary to upload the ignition file to azure storage because the azure provider does not support binary upload. we need to create a file and pass it to the blob upload resource instead. tf blob storage resource : https://www.terraform.io/docs/providers/azurerm/r/storage_blob.html storage naming limits : https://docs.microsoft.com/en-us/azure/architecture/best-practices/naming-conventions#storage
- Loading branch information
Showing
22 changed files
with
1,999 additions
and
2 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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,15 @@ | ||
package plugins | ||
|
||
import ( | ||
"github.com/hashicorp/terraform/plugin" | ||
"github.com/terraform-providers/terraform-provider-local/local" | ||
) | ||
|
||
func init() { | ||
localProvider := func() { | ||
plugin.Serve(&plugin.ServeOpts{ | ||
ProviderFunc: local.Provider, | ||
}) | ||
} | ||
KnownPlugins["terraform-provider-local"] = localProvider | ||
} |
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,15 @@ | ||
package plugins | ||
|
||
import ( | ||
"github.com/hashicorp/terraform/plugin" | ||
"github.com/terraform-providers/terraform-provider-random/random" | ||
) | ||
|
||
func init() { | ||
randomProvider := func() { | ||
plugin.Serve(&plugin.ServeOpts{ | ||
ProviderFunc: random.Provider, | ||
}) | ||
} | ||
KnownPlugins["terraform-provider-random"] = randomProvider | ||
} |
202 changes: 202 additions & 0 deletions
202
pkg/terraform/exec/plugins/vendor/github.com/dustinkirkland/golang-petname/LICENSE
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
20 changes: 20 additions & 0 deletions
20
pkg/terraform/exec/plugins/vendor/github.com/dustinkirkland/golang-petname/debian/copyright
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.