diff --git a/.goreleaser.yml b/.goreleaser.yml index 77382d76..d81d9ae6 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -243,7 +243,7 @@ nfpms: maintainer: "https://github.com/dvaumoron" homepage: https://github.com/tofuutils/tenv description: >- - tenv helps manage several version of OpenTofu (https://opentofu.org) and Terraform (https://www.terraform.io/), + tenv helps manage several version of OpenTofu (https://opentofu.org), Terraform (https://www.terraform.io/), Terragrunt (https://terragrunt.gruntwork.io), and Atmos (https://atmos.tools/), tenv is the managing command and tofu and terraform are proxy commands. license: "Apache-2.0" formats: @@ -289,9 +289,9 @@ nfpms: # project_source_url: https://github.com/tofuutils/tenv # docs_url: https://github.com/tofuutils/tenv/blob/main/README.md # tags: "terraform opentofu terragrunt tofuenv tfenv tenv" -# summary: OpenTofu, Terraform and Terragrunt version manager, written in Go. +# summary: OpenTofu, Terraform, Terragrunt, and Atmos version manager, written in Go. # description: | -# OpenTofu, Terraform and Terragrunt version manager, written in Go. +# OpenTofu, Terraform, Terragrunt, and Atmos version manager, written in Go. # release_notes: "https://github.com/tofuutils/tenv/releases/tag/v{{ .Version }}" # dependencies: # - id: nfpm diff --git a/README.md b/README.md index 7d50e6bb..aad1431b 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@

tenv

- OpenTofu, Terraform, Terragrunt and Atmos version manager, written in Go. + OpenTofu, Terraform, Terragrunt, and Atmos version manager, written in Go.
ยท Report Bug diff --git a/cmd/tenv/tenv.go b/cmd/tenv/tenv.go index 2023e761..8f4a4b05 100644 --- a/cmd/tenv/tenv.go +++ b/cmd/tenv/tenv.go @@ -72,13 +72,13 @@ func main() { func initRootCmd(conf *config.Config) *cobra.Command { rootCmd := &cobra.Command{ Use: config.TenvName, - Long: "tenv help manage several versions of OpenTofu (https://opentofu.org), Terraform (https://www.terraform.io) and Terragrunt (https://terragrunt.gruntwork.io).", + Long: "tenv help manage several versions of OpenTofu (https://opentofu.org), Terraform (https://www.terraform.io), Terragrunt (https://terragrunt.gruntwork.io), and Atmos (https://atmos.tools/).", Version: version, } flags := rootCmd.PersistentFlags() flags.BoolVarP(&conf.ForceQuiet, "quiet", "q", conf.ForceQuiet, "no unnecessary output (and no log)") - flags.StringVarP(&conf.RootPath, "root-path", "r", conf.RootPath, "local path to install versions of OpenTofu, Terraform and Terragrunt") + flags.StringVarP(&conf.RootPath, "root-path", "r", conf.RootPath, "local path to install versions of OpenTofu, Terraform, Terragrunt, and Atmos") flags.BoolVarP(&conf.DisplayVerbose, "verbose", "v", false, "verbose output (and set log level to Trace)") rootCmd.AddCommand(newVersionCmd()) diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index 38a38f64..93383167 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -1,9 +1,9 @@ name: tenv -summary: Version manager for OpenTofu, Terraform and Terragrunt, written in Go. +summary: Version manager for OpenTofu, Terraform, Terragrunt, and Atmos written in Go. description: | - tenv is a versatile version manager for [OpenTofu](https://opentofu.org), [Terraform](https://www.terraform.io/) and [Terragrunt](https://terragrunt.gruntwork.io/), + tenv is a versatile version manager for [OpenTofu](https://opentofu.org), [Terraform](https://www.terraform.io/), [Terragrunt](https://terragrunt.gruntwork.io/), and Atmos (https://atmos.tools/) written in Go. Our tool simplifies the complexity of handling different versions of these powerful tools, ensuring developers and DevOps professionals can focus on what matters most - building and deploying efficiently.