mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-16 11:24:35 -05:00
4f1768e660
Signed-off-by: Daniel Weiße <dw@edgeless.systems>
19 lines
311 B
Go
19 lines
311 B
Go
//go:build !linux
|
|
|
|
/*
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
package azure
|
|
|
|
import (
|
|
"context"
|
|
"log/slog"
|
|
)
|
|
|
|
func (c *Cloud) PrepareControlPlaneNode(_ context.Context, _ *slog.Logger) error {
|
|
panic("azure.*Cloud.PrepareControlPlaneNode is only supported on Linux")
|
|
}
|