Difference between revisions of "Terraform init"
Jump to navigation
Jump to search
Line 26: | Line 26: | ||
== Related terms == | == Related terms == | ||
+ | * [[terraform login]] | ||
* <code>[[terraform apply]]</code>, <code>[[terraform validate]]</code>, <code>[[terraform show]]</code> | * <code>[[terraform apply]]</code>, <code>[[terraform validate]]</code>, <code>[[terraform show]]</code> | ||
* <code>[[.terraform.lock.hcl]]</code> | * <code>[[.terraform.lock.hcl]]</code> |
Revision as of 19:45, 23 October 2023
terraform init
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
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
terraform init -backend=false
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
Terraform has been successfully initialized!
Initializing provider plugins...
Terraform initialized in an empty directory!
Error: Invalid multi-line string
Error: Failed to get existing workspaces: S3 bucket does not exist.
Error: Error accessing remote module registry
Error: Unsupported argument
Related terms
- terraform login
terraform apply
,terraform validate
,terraform show
.terraform.lock.hcl
.terraform/
or.terraform.d/
.terraform/modules/
.terraform/providers/
source
- Backends: Terraform S3 backend
- Terraform EKS module
terraform get
,terraform get -update
- Terraform provider
hashicorp/
- Terraform Plugin Framework
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: