pulumi/pkg/cmd/policy_enable.go

63 lines
2 KiB
Go
Raw Normal View History

2020-01-03 23:16:39 +01:00
// Copyright 2016-2020, Pulumi Corporation.
2019-06-28 19:07:49 +02:00
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package cmd
import (
"github.com/pulumi/pulumi/pkg/backend"
"github.com/pulumi/pulumi/sdk/go/common/util/cmdutil"
2019-06-28 19:07:49 +02:00
"github.com/spf13/cobra"
)
2020-01-27 19:35:34 +01:00
const latestKeyword = "latest"
2020-01-03 23:16:39 +01:00
type policyEnableArgs struct {
policyGroup string
}
func newPolicyEnableCmd() *cobra.Command {
args := policyEnableArgs{}
2019-06-28 19:07:49 +02:00
var cmd = &cobra.Command{
2020-01-27 19:35:34 +01:00
Use: "enable <org-name>/<policy-pack-name> <latest|version>",
Args: cmdutil.ExactArgs(2),
Short: "[PREVIEW] Enable a Policy Pack for a Pulumi organization",
2020-01-27 19:35:34 +01:00
Long: "Enable a Policy Pack for a Pulumi organization. " +
"Can specify latest to enable the latest version of the Policy Pack or a specific version number.",
2020-01-03 23:16:39 +01:00
Run: cmdutil.RunFunc(func(cmd *cobra.Command, cliArgs []string) error {
2019-06-28 19:07:49 +02:00
// Obtain current PolicyPack, tied to the Pulumi service backend.
2020-01-03 23:16:39 +01:00
policyPack, err := requirePolicyPack(cliArgs[0])
2019-06-28 19:07:49 +02:00
if err != nil {
return err
}
// Parse version if it's specified.
2020-02-25 02:11:56 +01:00
var version *string
2020-01-27 19:35:34 +01:00
if cliArgs[1] != latestKeyword {
2020-02-25 02:11:56 +01:00
version = &cliArgs[1]
2019-06-28 19:07:49 +02:00
}
// Attempt to enable the Policy Pack.
return policyPack.Enable(commandContext(), args.policyGroup, backend.PolicyPackOperation{
2020-02-25 02:11:56 +01:00
VersionTag: version, Scopes: cancellationScopes})
2019-06-28 19:07:49 +02:00
}),
}
2020-01-03 23:16:39 +01:00
cmd.PersistentFlags().StringVar(
&args.policyGroup, "policy-group", "",
"The Policy Group for which the Policy Pack will be enabled; if not specified, the default Policy Group is used")
2019-06-28 19:07:49 +02:00
return cmd
}