Difference between revisions of "Terraform init"

From wikieduonline
Jump to navigation Jump to search
Line 1: Line 1:
 
{{lowercase}}
 
{{lowercase}}
 
<code>terraform init</code> command is used to initialize a working directory containing [[Terraform configuration files]]: <code>[[main.tf]]</code>
 
<code>terraform init</code> command is used to initialize a working directory containing [[Terraform configuration files]]: <code>[[main.tf]]</code>
 +
* https://www.terraform.io/docs/cli/commands/init.html
  
 
During <code>terraform init</code>, the configuration is searched for [[module]] blocks, and the source code for referenced modules is retrieved from the locations given in their <code>[[source]]</code> arguments. It is safe to run <code>terraform init</code> multiple times.
 
During <code>terraform init</code>, the configuration is searched for [[module]] blocks, and the source code for referenced modules is retrieved from the locations given in their <code>[[source]]</code> arguments. It is safe to run <code>terraform init</code> multiple times.
Line 7: Line 8:
  
  
* https://www.terraform.io/docs/cli/commands/init.html
+
 
  
 
== Examples ==
 
== Examples ==

Revision as of 15:08, 6 September 2021

terraform init command is used to initialize a working directory containing Terraform configuration files: main.tf

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



Examples

Related terms

See also

Advertising: