mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-16 19:34:37 -05:00
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")
|
||
|
}
|