本文整理匯總了Golang中github.com/aws/amazon-ecs-cli/ecs-cli/modules/aws/clients/cloudformation.CloudformationClient.DeleteStack方法的典型用法代碼示例。如果您正苦於以下問題:Golang CloudformationClient.DeleteStack方法的具體用法?Golang CloudformationClient.DeleteStack怎麽用?Golang CloudformationClient.DeleteStack使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/aws/amazon-ecs-cli/ecs-cli/modules/aws/clients/cloudformation.CloudformationClient
的用法示例。
在下文中一共展示了CloudformationClient.DeleteStack方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: deleteCluster
func deleteCluster(context *cli.Context, rdwr config.ReadWriter, ecsClient ecsclient.ECSClient, cfnClient cloudformation.CloudformationClient) error {
// Validate cli flags
if !isForceSet(context) {
return fmt.Errorf("Missing required flag '--%s'", forceFlag)
// TODO prompt override for force
}
ecsParams, err := newCliParams(context, rdwr)
if err != nil {
return err
}
// Validate that cluster exists in ECS
ecsClient.Initialize(ecsParams)
if err := validateCluster(ecsParams.Cluster, ecsClient); err != nil {
return err
}
// Validate that a cfn stack exists for the cluster
cfnClient.Initialize(ecsParams)
stackName := ecsParams.GetCfnStackName()
if err := cfnClient.ValidateStackExists(stackName); err != nil {
return fmt.Errorf("CloudFormation stack not found for cluster '%s'", ecsParams.Cluster)
}
// Delete cfn stack
if err := cfnClient.DeleteStack(stackName); err != nil {
return err
}
logrus.Info("Waiting for your cluster resources to be deleted...")
if err := cfnClient.WaitUntilDeleteComplete(stackName); err != nil {
return err
}
// Delete cluster in ECS
if _, err := ecsClient.DeleteCluster(ecsParams.Cluster); err != nil {
return err
}
return nil
}
示例2: createCluster
func createCluster(context *cli.Context, rdwr config.ReadWriter, ecsClient ecsclient.ECSClient, cfnClient cloudformation.CloudformationClient, amiIds ami.ECSAmiIds) error {
// Validate cli flags
if !isIAMAcknowledged(context) {
return fmt.Errorf("Please acknowledge that this command may create IAM resources with the '--%s' flag", capabilityIAMFlag)
}
ecsParams, err := newCliParams(context, rdwr)
if err != nil {
return err
}
// Check if cluster is specified
if ecsParams.Cluster == "" {
return fmt.Errorf("Please configure a cluster using the configure command.")
}
// Check if cfn stack already exists
cfnClient.Initialize(ecsParams)
stackName := ecsParams.GetCfnStackName()
var deleteStack bool
if err := cfnClient.ValidateStackExists(stackName); err == nil {
if !isForceSet(context) {
return fmt.Errorf("A CloudFormation stack already exists for the cluster '%s'. Please specify '--%s' to clean up your existing resources.", ecsParams.Cluster, forceFlag)
}
deleteStack = true
}
// Populate cfn params
cfnParams := cliFlagsToCfnStackParams(context)
cfnParams.Add(cloudformation.ParameterKeyCluster, ecsParams.Cluster)
// Check if key pair exists
_, err = cfnParams.GetParameter(cloudformation.ParameterKeyKeyPairName)
if err == cloudformation.ParameterNotFoundError {
return fmt.Errorf("Please specify the keypair name with '--%s' flag", keypairNameFlag)
} else if err != nil {
return err
}
// Check if vpc and AZs are not both specified.
if validateMutuallyExclusiveParams(cfnParams, cloudformation.ParameterKeyVPCAzs, cloudformation.ParameterKeyVpcId) {
return fmt.Errorf("You can only specify '--%s' or '--%s'", vpcIdFlag, vpcAzFlag)
}
// Check if 2 AZs are specified
if validateCommaSeparatedParam(cfnParams, cloudformation.ParameterKeyVPCAzs, 2, 2) {
return fmt.Errorf("You must specify 2 comma-separated availability zones with the '--%s' flag", vpcAzFlag)
}
// Check if vpc exists when security group is specified
if validateDependentParams(cfnParams, cloudformation.ParameterKeySecurityGroup, cloudformation.ParameterKeyVpcId) {
return fmt.Errorf("You have selected a security group. Please specify a VPC with the '--%s' flag", vpcIdFlag)
}
// Check only one security group is specified
if validateCommaSeparatedParam(cfnParams, cloudformation.ParameterKeySecurityGroup, 1, 1) {
return fmt.Errorf("You can only specify one security group with the '--%s' flag", securityGroupFlag)
}
// Check if subnets exists when vpc is specified
if validateDependentParams(cfnParams, cloudformation.ParameterKeyVpcId, cloudformation.ParameterKeySubnetIds) {
return fmt.Errorf("You have selected a VPC. Please specify 2 comma-separated subnets with the '--%s' flag", subnetIdsFlag)
}
// Check if vpc exists when subnets is specified
if validateDependentParams(cfnParams, cloudformation.ParameterKeySubnetIds, cloudformation.ParameterKeyVpcId) {
return fmt.Errorf("You have selected subnets. Please specify a VPC with the '--%s' flag", vpcIdFlag)
}
// Check if 2 subnets are specified
if validateCommaSeparatedParam(cfnParams, cloudformation.ParameterKeySubnetIds, 2, 2) {
return fmt.Errorf("You must specify 2 comma-separated subnets with the '--%s' flag", subnetIdsFlag)
}
// Check if image id was supplied, else populate
_, err = cfnParams.GetParameter(cloudformation.ParameterKeyAmiId)
if err == cloudformation.ParameterNotFoundError {
amiId, err := amiIds.Get(aws.StringValue(ecsParams.Config.Region))
if err != nil {
return err
}
cfnParams.Add(cloudformation.ParameterKeyAmiId, amiId)
} else if err != nil {
return err
}
if err := cfnParams.Validate(); err != nil {
return err
}
// Create ECS cluster
ecsClient.Initialize(ecsParams)
if _, err := ecsClient.CreateCluster(ecsParams.Cluster); err != nil {
return err
}
// Delete cfn stack
if deleteStack {
if err := cfnClient.DeleteStack(stackName); err != nil {
return err
}
logrus.Info("Waiting for your CloudFormation stack resources to be deleted...")
//.........這裏部分代碼省略.........