From 20e0f221e9dbf05f57ade6997647122b82449ff4 Mon Sep 17 00:00:00 2001 From: Jacob Bednarz Date: Tue, 31 Oct 2023 11:23:30 +1100 Subject: [PATCH] Update root.go --- internal/app/cf-terraforming/cmd/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/app/cf-terraforming/cmd/root.go b/internal/app/cf-terraforming/cmd/root.go index eb84897e2..1a6b827cd 100644 --- a/internal/app/cf-terraforming/cmd/root.go +++ b/internal/app/cf-terraforming/cmd/root.go @@ -45,7 +45,7 @@ func init() { rootCmd.PersistentFlags().StringVarP(&cfgFile, "config", "c", home+"/.cf-terraforming.yaml", "Path to config file") rootCmd.PersistentFlags().BoolVarP(&verbose, "verbose", "v", false, "Specify verbose output (same as setting log level to debug)") rootCmd.PersistentFlags().StringVar(&resourceType, "resource-type", "", "Which resource you wish to generate") - rootCmd.PersistentFlags().BoolVarP(&useModernImportBlock, "modern-import-block", "", false, "Whether to generate HCL import blocks for generated resources instead of `terraform import` compatible CLI commands. This is only compatible with Terraform 1.5+") + rootCmd.PersistentFlags().BoolVarP(&useModernImportBlock, "modern-import-block", "", false, "Whether to generate HCL import blocks for generated resources instead of terraform import compatible CLI commands. This is only compatible with Terraform 1.5+") rootCmd.PersistentFlags().StringVarP(&zoneID, "zone", "z", "", "Limit the export to a single zone ID") if err = viper.BindPFlag("zone", rootCmd.PersistentFlags().Lookup("zone")); err != nil {