Difference between revisions of "Terraform init"

From wikieduonline
Jump to navigation Jump to search
 
(129 intermediate revisions by 5 users not shown)
Line 1: Line 1:
 +
{{lowercase}}
 +
<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]].
 +
*
 +
* <code>[[terraform init --help]]</code>
  
 +
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.
  
terraform init
+
It is safe to run <code>[[terraform]] init</code> multiple times.
  
Initializing the backend...
+
{{terraform flow}}
+
== Commands ==
Initializing provider plugins...
+
* <code>[[terraform init]]</code>
- Finding latest version of hashicorp/random...
+
* <code>[[terraform init -upgrade]]</code>
- Installing hashicorp/random v3.1.0...
+
* <code>[[terraform init -reconfigure]]</code>
- Installed hashicorp/random v3.1.0 (signed by HashiCorp)
+
* <code>[[terraform init -migrate-state]]</code>
+
* <code>[[terraform init -get-plugins=false]]</code>
The following providers do not have any version constraints in configuration,
+
* <code>[[terraform init -verify-plugins=false]]</code>
so the latest version was installed.
+
* <code>[[terraform init -backend-config]]=bucket=your_bucket_name -backend-config=key=your-key-name/project/***/state.tfstate -backend-config=region=XXXXX -backend-config=access_key=XXXX -backend-config=secret_key=XXXX</code>
+
* <code>[[terraform init -backend=false]]</code>
To prevent automatic upgrades to new major versions that may contain breaking
+
* <code>[[Error: Failed to read organization]] "test" at host [[app.terraform.io]]</code>
changes, we recommend adding version constraints in a required_providers block
 
in your configuration, with the constraint strings suggested below.
 
 
hashicorp/random: version = "~> 3.1.0"
 
 
Terraform has been successfully initialized!
 
 
You may now begin working with Terraform. Try running "terraform plan" to see
 
any changes that are required for your infrastructure. All Terraform commands
 
should now work.
 
 
If you ever set or change modules or backend configuration for Terraform,
 
rerun this command to reinitialize your working directory. If you forget, other
 
commands will detect it and remind you to do so if necessary.
 
  
 +
== Examples ==
 +
* [[Examples: terraform init]] executions
 +
* [[Terraform examples]]
  
  
== Execution with errors ==
+
[[Initializing the backend]]...
 
+
  bucket
  terraform init
+
  The name of the S3 bucket
Terraform initialized in an empty directory!
 
 
   
 
   
The directory has no Terraform configuration files. You may begin working
+
  Enter a value:
with Terraform immediately by creating Terraform configuration files.
 
 
 
 
 
 
 
  
terraform init
+
== Errors ==
Error: Error checking configuration: <nil>: Failed to read module directory; Module directory /var/lib/snapd/void does not exist or cannot be read.
+
{{tf init errors}}
  
 +
== Related terms ==
 +
* <code>[[terraform login]]</code>
 +
* <code>[[TF_CLOUD_ORGANIZATION‎‎]]</code>
 +
* <code>[[terraform apply]]</code>, <code>[[terraform validate]]</code>, <code>[[terraform show]]</code>
 +
* <code>[[.terraform.lock.hcl]]</code>
 +
* <code>[[.terraform/]]</code> or <code>[[.terraform.d/]]</code>
 +
* <code>[[.terraform/modules/]]</code>
 +
* <code>[[.terraform/providers/]]</code>
 +
* <code>[[source]]</code>
 +
* [[Backends]]: [[Terraform S3 backend]]
 +
* [[Terraform EKS module]]
 +
* <code>[[terraform get]]</code>, <code>[[terraform get -update]]</code>
 +
* [[Terraform provider]]
 +
* <code>[[hashicorp/]]</code>
 +
* [[Terraform Plugin Framework]]
 +
* <code>[[required_providers]]</code>
  
 
== See also ==
 
== See also ==
* {{Terraform}}
+
* {{terraform init}}
 +
* {{tf files}}
  
  
 
[[Category:Terraform]]
 
[[Category:Terraform]]

Latest revision as of 08:26, 20 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[edit]

Examples[edit]


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

  Enter a value:

Errors[edit]

Related terms[edit]

See also[edit]

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