Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the help descriptions for commands #845

Merged
merged 41 commits into from
Jan 8, 2025
Merged
Changes from 1 commit
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
82c91c3
Update the help descriptions for commands
samtholiya Dec 11, 2024
29e309e
Update the help descriptions for commands
samtholiya Dec 11, 2024
6e364d4
Merge branch 'main' into DEV-2823
samtholiya Dec 12, 2024
c4ce5f1
Merge branch 'DEV-2823' of https://github.com/cloudposse/atmos into D…
samtholiya Dec 12, 2024
0cb5f1a
Update help content
samtholiya Dec 13, 2024
887f1b6
Merge branch 'main' into DEV-2823
osterman Dec 16, 2024
a0ca467
Update cmd/list_components.go
osterman Dec 16, 2024
0b8b232
Update cmd/list.go
osterman Dec 16, 2024
1d6041d
Update cmd/atlantis_generate.go
osterman Dec 16, 2024
ac3e0b4
Update cmd/atlantis_generate.go
osterman Dec 16, 2024
da1a8da
Update cmd/atlantis_generate_repo_config.go
osterman Dec 16, 2024
4f22922
Update cmd/atlantis.go
osterman Dec 16, 2024
96674d0
Update cmd/describe.go
osterman Dec 16, 2024
f827a85
Update cmd/describe_affected.go
osterman Dec 16, 2024
4f32320
Update cmd/aws.go
osterman Dec 16, 2024
6f32228
Update cmd/aws_eks.go
osterman Dec 16, 2024
8ae7656
Update cmd/describe_component.go
osterman Dec 16, 2024
fe4d74c
Merge branch 'main' into DEV-2823
osterman Jan 3, 2025
9ecd2ea
Merge branch 'main' into DEV-2823
samtholiya Jan 7, 2025
bbc1fec
Fix eds long description
samtholiya Jan 7, 2025
c221521
Update cmd/terraform_generate_varfile.go
samtholiya Jan 7, 2025
8ce9d36
Update cmd/validate.go
samtholiya Jan 7, 2025
eacd883
Update cmd/terraform_generate_backend.go
samtholiya Jan 7, 2025
676b38f
Update cmd/terraform_generate_backend.go
samtholiya Jan 7, 2025
13d74a6
Update cmd/vendor.go
samtholiya Jan 7, 2025
d9ed11d
Update cmd/terraform.go
samtholiya Jan 7, 2025
bd45131
Update cmd/pro.go
samtholiya Jan 7, 2025
9e2183e
Update cmd/describe_workflows.go
samtholiya Jan 7, 2025
2285dbe
Update cmd/describe_workflows.go
samtholiya Jan 7, 2025
10691a5
Update cmd/helmfile.go
samtholiya Jan 7, 2025
f1d157b
Update cmd/helmfile_generate_varfile.go
samtholiya Jan 7, 2025
492ad8e
Update cmd/helmfile_generate_varfile.go
samtholiya Jan 7, 2025
fc4d901
Update cmd/list.go
samtholiya Jan 7, 2025
9202b73
Update cmd/version.go
samtholiya Jan 7, 2025
d0fcd2c
Update cmd/version.go
samtholiya Jan 7, 2025
d62bbe8
Update cmd/workflow.go
samtholiya Jan 7, 2025
e76b2f3
Update cmd/workflow.go
samtholiya Jan 7, 2025
6639f65
Update internal/tui/templates/templater.go
samtholiya Jan 7, 2025
7872186
Update cmd/atlantis.go
samtholiya Jan 7, 2025
0302094
Merge branch 'main' into DEV-2823
samtholiya Jan 8, 2025
6967b3d
updates
aknysh Jan 8, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update cmd/terraform.go
Co-authored-by: Erik Osterman (CEO @ Cloud Posse) <erik@cloudposse.com>
  • Loading branch information
samtholiya and osterman authored Jan 7, 2025
commit d9ed11ded3073c34cc6c4cf64987ed914a902162
2 changes: 1 addition & 1 deletion cmd/terraform.go
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ var terraformCmd = &cobra.Command{
Use: "terraform",
Aliases: []string{"tf"},
Short: "Execute Terraform commands (e.g., plan, apply, destroy) using Atmos stack configurations",
osterman marked this conversation as resolved.
Show resolved Hide resolved
aknysh marked this conversation as resolved.
Show resolved Hide resolved
Long: `This command executes Terraform commands`,
Long: `This command allows you to execute Terraform commands, such as plan, apply, and destroy, using Atmos stack configurations for consistent infrastructure management.`,
FParseErrWhitelist: struct{ UnknownFlags bool }{UnknownFlags: true},
RunE: func(cmd *cobra.Command, args []string) error {
return terraformRun(cmd, cmd, args)