// Copyright 2016-2020, Pulumi Corporation. // // 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 ( "strconv" "github.com/pkg/errors" "github.com/pulumi/pulumi/pkg/backend" "github.com/pulumi/pulumi/pkg/util/cmdutil" "github.com/spf13/cobra" ) type policyEnableArgs struct { policyGroup string latest bool } func newPolicyEnableCmd() *cobra.Command { args := policyEnableArgs{} var cmd = &cobra.Command{ Use: "enable / [version]", Args: cmdutil.RangeArgs(1, 2), Short: "Enable a Policy Pack for a Pulumi organization", Long: "Enable a Policy Pack for a Pulumi organization. Version or latest flag must be specified.", Run: cmdutil.RunFunc(func(cmd *cobra.Command, cliArgs []string) error { // Obtain current PolicyPack, tied to the Pulumi service backend. policyPack, err := requirePolicyPack(cliArgs[0]) if err != nil { return err } // Make sure that a version or latest is specified. Having both or neither // specified would make this an ambiguous request. if len(cliArgs) < 2 && !args.latest { return errors.New("must specify a version or the --latest flag") } else if len(cliArgs) == 2 && args.latest { return errors.New("cannot specify both a version and the --latest flag") } // Parse version if it's specified. var version *int if len(cliArgs) > 1 { v, err := strconv.Atoi(cliArgs[1]) if err != nil { return errors.Wrapf(err, "Could not parse version (should be an integer)") } version = &v } // Attempt to enable the Policy Pack. return policyPack.Enable(commandContext(), args.policyGroup, backend.PolicyPackOperation{ Version: version, Scopes: cancellationScopes}) }), } 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") cmd.PersistentFlags().BoolVarP( &args.latest, "latest", "l", false, "Enable the latest version of the Policy Pack") return cmd }