mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-12 17:12:01 -06:00
4c0bda5386
Co-authored-by: Damian Stasik <920747+damianstasik@users.noreply.github.com> Co-authored-by: Roman Grinovski <roman.grinovski@gmail.com>
24 lines
660 B
Plaintext
24 lines
660 B
Plaintext
---
|
|
description: The tofu get command downloads and updates modules.
|
|
---
|
|
|
|
# Command: get
|
|
|
|
The `tofu get` command is used to download and update
|
|
[modules](/docs/language/modules/develop) mentioned in the root module.
|
|
|
|
## Usage
|
|
|
|
Usage: `tofu get [options]`
|
|
|
|
The modules are downloaded into a `.terraform` subdirectory of the current
|
|
working directory. Don't commit this directory to your version control
|
|
repository.
|
|
|
|
The `get` command supports the following option:
|
|
|
|
* `-update` - If specified, modules that are already downloaded will be
|
|
checked for updates and the updates will be downloaded if present.
|
|
|
|
* `-no-color` - Disable text coloring in the output.
|