Difference between revisions of "Terraform init"

From wikieduonline
Jump to navigation Jump to search
Tags: Mobile web edit, Mobile edit
Line 1: Line 1:
 
{{lowercase}}
 
{{lowercase}}
<code>[[terraform]] init</code> command is used to initialize a working directory (<code>[[.terraform/]]</code>) containing [[Terraform configuration files]]: <code>[[main.tf]]</code>. Downloads plugins and retrieves teh source code from referenced [[modules]].
+
<code>[[terraform]] init</code> <ref>https://www.terraform.io/docs/cli/commands/init.html</ref> command is used to initialize a working directory (<code>[[.terraform/]]</code>) containing [[Terraform configuration files]]: <code>[[main.tf]]</code>. Downloads plugins and retrieves teh source code from referenced [[modules]].
* https://www.terraform.io/docs/cli/commands/init.html
+
*  
 
* <code>[[terraform init --help]]</code>
 
* <code>[[terraform init --help]]</code>
  

Revision as of 20:22, 11 February 2024

terraform init [1] command is used to initialize a working directory (.terraform/) containing Terraform configuration files: main.tf. Downloads plugins and retrieves teh source code from referenced modules.

During terraform init, the configuration is searched for module blocks, and the source code for referenced modules is retrieved from the locations given in their source arguments.

It is safe to run terraform init multiple times.

terraform init -> terraform plan ->  terraform apply -> terraform show

Commands

Examples


Initializing the backend...
bucket
  The name of the S3 bucket 

  Enter a value:

Errors

Related terms

See also

  • https://www.terraform.io/docs/cli/commands/init.html
  • Advertising: