Terraform\terraform> terraform init
Initializing the backend...
Initializing provider plugins...
- Finding latest version of hashicorp/us-west-2...
- Reusing previous version of hashicorp/aws from the dependency lock file
- Using previously-installed hashicorp/aws v2.70.0
╷
│ Warning: Version constraints inside provider configuration blocks are deprecated
│
│ on main.tf line 3, in provider "aws":
│ 3: version = "~> 2.0"
│
│ Terraform 0.13 and earlier allowed provider version constraints inside the provider configuration block, but that is now deprecated and will be removed in a future version of Terraform. To silence this warning, move the provider
│ version constraint into the required_providers block.
│
│ (and one more similar warning elsewhere)
╵
╷
│ Warning: Quoted references are deprecated
│
│ on main.tf line 58, in resource "aws_instance" "dev6":
│ 58: depends_on = ["aws_dynamodb_table.dynamodb-homologação"]
│
│ In this context, references are expected literally rather than in quotes. Terraform 0.11 and earlier required quotes, but quoted references are now deprecated and will be removed in a future version of Terraform. Remove the quotes
│ surrounding this reference to silence this warning.
│
│ (and 2 more similar warnings elsewhere)
╵
╷
│ Error: Failed to query available provider packages
│
│ Could not retrieve the list of available versions for provider hashicorp/us-west-2: provider registry registry.terraform.io does not have a provider named registry.terraform.io/hashicorp/us-west-2
│
│ All modules should specify their required_providers so that external consumers will get the correct providers when using a module. To see which modules are currently depending on hashicorp/us-west-2, run the following command:
│ terraform providers
╵
terraform> terraform plan
╷
│ Warning: Version constraints inside provider configuration blocks are deprecated
│
│ on main.tf line 3, in provider "aws":
│ 3: version = "~> 2.0"
│
│ Terraform 0.13 and earlier allowed provider version constraints inside the provider configuration block, but that is now deprecated and will be removed in a future version of Terraform. To silence this warning, move the provider
│ version constraint into the required_providers block.
│
│ (and one more similar warning elsewhere)
╵
╷
│ Warning: Quoted references are deprecated
│
│ on main.tf line 58, in resource "aws_instance" "dev6":
│ 58: depends_on = ["aws_dynamodb_table.dynamodb-homologação"]
│
│ In this context, references are expected literally rather than in quotes. Terraform 0.11 and earlier required quotes, but quoted references are now deprecated and will be removed in a future version of Terraform. Remove the quotes
│ surrounding this reference to silence this warning.
│
│ (and 2 more similar warnings elsewhere)
╵
╷
│ Error: Could not load plugin
│
│
│ Plugin reinitialization required. Please run "terraform init".
│
│ Plugins are external binaries that Terraform uses to access and manipulate
│ resources. The configuration provided requires plugins which can't be located,
│ don't satisfy the version constraints, or are otherwise incompatible.
│
│ Terraform automatically discovers provider requirements from your
│ configuration, including providers used in child modules. To see the
│ requirements and constraints, run "terraform providers".
│
│ failed to instantiate provider "registry.terraform.io/hashicorp/us-west-2" to obtain schema: unknown provider "registry.terraform.io/hashicorp/us-west-2"
│
╵