pulumi/pkg/cmd/policy_rm.go

53 lines
1.6 KiB
Go
Raw Normal View History

2019-06-28 19:07:49 +02:00
// Copyright 2016-2018, 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 (
"github.com/pulumi/pulumi/pkg/backend"
"github.com/pulumi/pulumi/pkg/util/cmdutil"
"github.com/spf13/cobra"
)
2020-01-27 19:35:34 +01:00
const allKeyword = "all"
2020-01-03 23:16:39 +01:00
func newPolicyRmCmd() *cobra.Command {
2020-01-27 19:35:34 +01:00
2019-06-28 19:07:49 +02:00
var cmd = &cobra.Command{
2020-01-27 19:35:34 +01:00
Use: "rm <org-name>/<policy-pack-name> <all|version>",
2019-06-28 19:07:49 +02:00
Args: cmdutil.ExactArgs(2),
Short: "[PREVIEW] Removes a Policy Pack from a Pulumi organization",
2020-01-03 23:16:39 +01:00
Long: "Removes a Policy Pack from a Pulumi organization. " +
"The Policy Pack must be disabled from all Policy Groups before it can be removed.",
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
}
2020-02-25 02:11:56 +01:00
var version *string
2020-01-27 19:35:34 +01:00
if cliArgs[1] != allKeyword {
2020-02-25 02:11:56 +01:00
version = &cliArgs[1]
2019-06-28 19:07:49 +02:00
}
2020-01-03 23:16:39 +01:00
// Attempt to remove the Policy Pack.
return policyPack.Remove(commandContext(), backend.PolicyPackOperation{
2020-02-25 02:11:56 +01:00
VersionTag: version, Scopes: cancellationScopes})
2019-06-28 19:07:49 +02:00
}),
}
return cmd
}