Skip to content

Commit 9ee2059

Browse files
committed
fix: added targeting to init also
1 parent 389eba6 commit 9ee2059

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

docs/src/reference/cli/mach-composer_init.md

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ mach-composer init [flags]
1313
-h, --help help for init
1414
--ignore-version Skip MACH composer version check
1515
-o, --output-path string Outputs path to store the generated files. (default "deployments")
16+
-s, --site string Site to parse. If not set parse all sites.
1617
--var-file string Use a variable file to parse the configuration with.
1718
-w, --workers int The number of workers to use (default 1)
1819
```

internal/cmd/init.go

+6-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ import (
1111
"github.com/mach-composer/mach-composer-cli/internal/runner"
1212
)
1313

14+
var initFlags struct {
15+
site string
16+
}
17+
1418
var initCmd = &cobra.Command{
1519
Use: "init",
1620
Short: "Initialize site directories Terraform files.",
@@ -28,14 +32,15 @@ var initCmd = &cobra.Command{
2832

2933
func init() {
3034
registerCommonFlags(initCmd)
35+
initCmd.Flags().StringVarP(&initFlags.site, "site", "s", "", "Site to parse. If not set parse all sites.")
3136
}
3237

3338
func initFunc(cmd *cobra.Command, _ []string) error {
3439
cfg := loadConfig(cmd, true)
3540
defer cfg.Close()
3641
ctx := cmd.Context()
3742

38-
dg, err := graph.ToDeploymentGraph(cfg, commonFlags.outputPath)
43+
dg, err := graph.ToDeploymentGraph(cfg, commonFlags.outputPath, graph.WithTargetSiteName(initFlags.site))
3944
if err != nil {
4045
return err
4146
}

0 commit comments

Comments
 (0)