mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-07-21 22:38:53 -04:00
terraform-provider: support importing Constellation clusters (#2702)
* terraform-provider: support importing Constellation clusters * bazel: shfmt exclusion for import script * ci: fix godot check * bazel: shellcheck exclusion for import script * Update dev-docs/workflows/terraform-provider.md Co-authored-by: Adrian Stobbe <stobbe.adrian@gmail.com> * ci: fix Terraform lock exclude directories --------- Co-authored-by: Adrian Stobbe <stobbe.adrian@gmail.com>
This commit is contained in:
parent
d08e75bf9c
commit
367136add2
10 changed files with 222 additions and 28 deletions
|
@ -268,6 +268,21 @@ MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAELcPl4Ik+qZuH4K049wksoXK/Os3Z
|
|||
b92PDCpM7FZAINQF88s1TZS/HmRXYk62UJ4eqPduvUnJmXhNikhLbMi6fw==
|
||||
-----END PUBLIC KEY-----
|
||||
`
|
||||
|
||||
//
|
||||
// Terraform Provider.
|
||||
//
|
||||
|
||||
// ConstellationClusterURIScheme is the scheme used in Terraform Constellation cluster import URIs.
|
||||
ConstellationClusterURIScheme = "constellation-cluster"
|
||||
// KubeConfigURIKey is the key used for the KubeConfig in Terraform Constellation cluster import URIs.
|
||||
KubeConfigURIKey = "kubeConfig"
|
||||
// ClusterEndpointURIKey is the key used for the cluster endpoint in Terraform Constellation cluster import URIs.
|
||||
ClusterEndpointURIKey = "clusterEndpoint"
|
||||
// MasterSecretURIKey is the key used for the master secret in Terraform Constellation cluster import URIs.
|
||||
MasterSecretURIKey = "masterSecret"
|
||||
// MasterSecretSaltURIKey is the key used for the master secret salt in Terraform Constellation cluster import URIs.
|
||||
MasterSecretSaltURIKey = "masterSecretSalt"
|
||||
)
|
||||
|
||||
// BinaryVersion returns the version of this Binary.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue