Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: fix empty Kubernetes version attribute in Terraform provider e2e test #2804

Merged
merged 2 commits into from
Jan 8, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Add required kubernetes_version attribute to example
Signed-off-by: Daniel Weiße <dw@edgeless.systems>
  • Loading branch information
daniel-weisse committed Jan 8, 2024
commit 1e5d85a29467b498a742b3542f51ded6a2b1841e
msanft marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ resource "constellation_cluster" "azure_example" {
master_secret_salt = random_bytes.master_secret_salt.hex
measurement_salt = random_bytes.measurement_salt.hex
out_of_cluster_endpoint = "123.123.123.123"
kubernetes_version = "v1.2.3"
azure = {
tenant_id = "..."
subscription_id = "..."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ resource "constellation_cluster" "azure_example" {
master_secret_salt = random_bytes.master_secret_salt.hex
measurement_salt = random_bytes.measurement_salt.hex
out_of_cluster_endpoint = "123.123.123.123"
kubernetes_version = "v1.2.3"
azure = {
tenant_id = "..."
subscription_id = "..."
Expand Down