You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Execute terraform apply under the examples/root-example directory will got below errors:
╷
│ Error: Reference to undeclared input variable
│
│ on main.tf line 32, in provider "aws":
│ 32: region = var.region
│
│ An input variable with the name "region" has not been declared. This variable can be declared with a variable "region" {} block.
╵
╷
│ Error: Reference to undeclared local value
│
│ on main.tf line 57, in module "sn_cluster":
│ 57: cluster_name = local.cluster_name
│
│ A local value with the name "cluster_name" has not been declared.
╵
╷
│ Error: Reference to undeclared input variable
│
│ on main.tf line 75, in module "sn_cluster":
│ 75: region = var.region
│
│ An input variable with the name "region" has not been declared. This variable can be declared with a variable "region" {} block.
The text was updated successfully, but these errors were encountered:
Environment
Reproduce
Execute
terraform apply
under theexamples/root-example
directory will got below errors:The text was updated successfully, but these errors were encountered: