Difference between revisions of "Terraform init with errors"
Jump to navigation
Jump to search
Tags: Mobile web edit, Mobile edit |
|||
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
<code>[[terraform init]]</code> | <code>[[terraform init]]</code> | ||
+ | |||
+ | |||
+ | {{tf init errors}} | ||
+ | |||
== Error: Invalid multi-line string == | == Error: Invalid multi-line string == | ||
Line 63: | Line 67: | ||
== See also == | == See also == | ||
* {{terraform init}} | * {{terraform init}} | ||
− | + | * {{terraform show}} | |
[[Category:Terraform]] | [[Category:Terraform]] |
Latest revision as of 10:45, 20 March 2023
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
Error: Invalid multi-line string[edit]
╷ │ Error: Invalid multi-line string │ │ on main.tf line 4, in module "your_module": │ 4: source = "../your_source_module │ 5: project_name = var.project_name │ │ Quoted strings may not be split over multiple lines. To produce a multi-line string, either use the \n escape to represent a newline │ character or use the "heredoc" multi-line template syntax. ╵
Solution: review your source
definition is right.
Warning: Interpolation-only expressions are deprecated[edit]
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.
See also[edit]
terraform init
[-upgrade | -reconfigure | -backend-config | -get-plugins=false | -verify-plugins=false ]
,--help
, Execution examples, Execution with errors,~/.terraformrc, required_providers
terraform show
,terraform show (output example)
,terraform state show module.my compute
terraform show --help
,terraform show (grep resource)
,terraform show my wrong name
,terraform show (grep aws instance)
Advertising: