Difference between revisions of "Terraform init"

From wikieduonline
Jump to navigation Jump to search
 
(90 intermediate revisions by 5 users not shown)
Line 1: Line 1:
 
{{lowercase}}
 
{{lowercase}}
<code>terraform init</code> is used to initialize a working directory containing [[Terraform configuration files]].
+
<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 source arguments.
+
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 this command multiple times.
+
It is safe to run <code>[[terraform]] init</code> multiple times.
  
 
{{terraform flow}}
 
{{terraform flow}}
 
+
== Commands ==
 
+
* <code>[[terraform init]]</code>
* https://www.terraform.io/docs/cli/commands/init.html
+
* <code>[[terraform init -upgrade]]</code>
 +
* <code>[[terraform init -reconfigure]]</code>
 +
* <code>[[terraform init -migrate-state]]</code>
 +
* <code>[[terraform init -get-plugins=false]]</code>
 +
* <code>[[terraform init -verify-plugins=false]]</code>
 +
* <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>
 +
* <code>[[Error: Failed to read organization]] "test" at host [[app.terraform.io]]</code>
  
 
== Examples ==
 
== Examples ==
*<code>[[terraform]] init</code>
+
* [[Examples: terraform init]] executions
*<code>[[terraform init -upgrade]]</code>
+
* [[Terraform examples]]
 
 
 
 
== Terraform init ==
 
<pre>
 
terraform init
 
Initializing modules...
 
- ec2_with_t2_unlimited in ../..
 
Downloading terraform-aws-modules/security-group/aws 4.3.0 for security_group...
 
- security_group in .terraform/modules/security_group
 
 
 
Initializing the backend...
 
 
 
Initializing provider plugins...
 
- Finding hashicorp/aws versions matching ">= 2.42.0"...
 
- Installing hashicorp/aws v3.55.0...
 
- Installed hashicorp/aws v3.55.0 (signed by HashiCorp)
 
 
 
Terraform has created a lock file .terraform.lock.hcl to record the provider
 
selections it made above. Include this file in your version control repository
 
so that Terraform can guarantee to make the same selections by default when
 
you run "terraform init" in the future.
 
 
 
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.
 
</pre>
 
  
== Execution with errors ==
 
  
  terraform init
+
  [[Initializing the backend]]...
  Terraform initialized in an empty directory!
+
  bucket
 +
  The name of the S3 bucket
 
   
 
   
The directory has no Terraform configuration files. You may begin working
+
  Enter a value:
with Terraform immediately by creating [[Terraform configuration files]].
 
 
 
terraform init
 
Error: Error checking configuration: <nil>: Failed to read module directory; Module directory /var/lib/snapd/void does not exist or cannot be read.
 
 
 
== Terraform init with errors ==
 
<pre>
 
terraform init
 
 
 
Initializing the backend...
 
 
 
Initializing provider plugins...
 
- Finding latest version of hashicorp/vsphere...
 
- Installing hashicorp/vsphere v1.24.3...
 
- Installed hashicorp/vsphere v1.24.3 (signed by HashiCorp)
 
 
 
Terraform has created a lock file .terraform.lock.hcl to record the provider
 
selections it made above. Include this file in your version control repository
 
so that Terraform can guarantee to make the same selections by default when
 
you run "terraform init" in the future.
 
 
 
 
 
Warning: Interpolation-only expressions are deprecated
 
 
 
  on kk.tf line 7, in data "vsphere_datastore" "datastore":
 
  7:  datacenter_id = "${data.vsphere_datacenter.dc.id}"
 
 
 
Terraform 0.11 and earlier required all non-constant expressions to be
 
provided via interpolation syntax, but this pattern is now deprecated. To
 
silence this warning, remove the "${ sequence from the start and the }"
 
sequence from the end of this expression, leaving just the inner expression.
 
 
 
Template interpolation syntax is still used to construct strings from
 
expressions when the template includes multiple interpolation sequences or a
 
mixture of literal strings and interpolations. This deprecation applies only
 
to templates that consist entirely of a single interpolation sequence.
 
 
 
(and 5 more similar warnings elsewhere)
 
 
 
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.
 
</pre>
 
  
 +
== Errors ==
 +
{{tf init errors}}
  
 
== Related terms ==
 
== Related terms ==
* <code>[[terraform apply]]</code>
+
* <code>[[terraform login]]</code>
* <code>[[terraform validate]]</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/]]</code> or <code>[[.terraform.d/]]</code>
 +
* <code>[[.terraform/modules/]]</code>
 +
* <code>[[.terraform/providers/]]</code>
 
* <code>[[source]]</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 init}}
 
* {{tf files}}
 
* {{tf files}}
* {{terraform cmd}}
 
* {{Terraform}}
 
  
  
 
[[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: