Difference between revisions of "Terraform init"
Jump to navigation
Jump to search
Tags: Mobile web edit, Mobile edit |
(→Errors) Tags: Mobile web edit, Mobile edit |
||
Line 25: | Line 25: | ||
* <code>[[Error: Unsupported Terraform Core version]]</code> | * <code>[[Error: Unsupported Terraform Core version]]</code> | ||
* <code>[[Error: Backend initialization required, please run "terraform init"]]</code> | * <code>[[Error: Backend initialization required, please run "terraform init"]]</code> | ||
+ | * <code>[[Warning: Quoted references are deprecated]]</code> | ||
== Related terms == | == Related terms == |
Revision as of 13:43, 15 March 2023
terraform init
command is used to initialize a working directory (.terraform/
) 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
Commands
terraform init
terraform init -upgrade
terraform init -reconfigure
terraform init -migrate-state
terraform init -get-plugins=false
terraform init -verify-plugins=false
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
Examples
- Examples: terraform init executions
Errors
Error: Failed to query available provider packages
Error: Unsupported Terraform Core version
Error: Backend initialization required, please run "terraform init"
Warning: Quoted references are deprecated
Related terms
terraform apply
,terraform validate
,terraform show
.terraform.lock.hcl
.terraform/
or.terraform.d/
.terraform/modules/
source
- Backends: Terraform S3 backend
- Terraform EKS
terraform get
- Terraform provider
- Terraform initialized in an empty directory!
Terraform has been successfully initialized!
Initializing provider plugins...
hashicorp/
See also
terraform init
[-upgrade | -reconfigure | -backend-config | -get-plugins=false | -verify-plugins=false ]
,--help
, Execution examples, Execution with errors,~/.terraformrc, required_providers
- Terraform configuration files, Terraform state files:
.tf
,.tfvars
,main.tf, outputs.tf
,variables.tf
,.terraform.d/
,terraform init
,providers.tf
,.terraform/
,terraform.tfstate
,.terraform.lock.hcl
,terraform.tfstate.d, override.tf, versions.tf
Advertising: