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 command "terraform init" in the root of the local clone directory
Expected behavior
Command "terraform init":
completes successfully with exit code 0
(optionally) prints message "Terraform has been successfully initialized!"
Actual behavior
Command "terraform init":
fails with exit code 1
prints error message subdir "modules/kubernetes-addons/helm-addon" not found
Full "terraform init" output:
Initializing the backend...
Initializing modules...
Downloading git::https://github.com/aws-ia/terraform-aws-eks-blueprints.git for helm_addon...
╷
│ Error: Failed to expand subdir globs
│
│ subdir "modules/kubernetes-addons/helm-addon" not found
╵
Root cause
This project depends on project terraform-aws-eks-blueprints (see main.tf:39).
Currently, this dependency is linked to the default branch of the target dependency project.
But this branch has evolved in such a way that is no longer compatible with this project.
Proposed fix
Change line main.tf:39 to: source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.32.1"
(note the trailing ?ref=v4.32.1)
The text was updated successfully, but these errors were encountered:
Describe the bug
Command "terraform init" fails.
To Reproduce
Expected behavior
Command "terraform init":
Actual behavior
Command "terraform init":
subdir "modules/kubernetes-addons/helm-addon" not found
Full "terraform init" output:
Desktop:
OS: Windows 10
terraform:
Root cause
This project depends on project terraform-aws-eks-blueprints (see main.tf:39).
Currently, this dependency is linked to the default branch of the target dependency project.
But this branch has evolved in such a way that is no longer compatible with this project.
Proposed fix
Change line main.tf:39 to:
source = "github.com/aws-ia/terraform-aws-eks-blueprints//modules/kubernetes-addons/helm-addon?ref=v4.32.1"
(note the trailing
?ref=v4.32.1
)The text was updated successfully, but these errors were encountered: