-
Notifications
You must be signed in to change notification settings - Fork 9.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Terraform crashes when importing module with only output vars #474
Comments
2014/10/20 14:54:00 Detected home directory from env var: /Users/ronpantofaro goroutine 64 [running]: goroutine 16 [select]: goroutine 19 [finalizer wait]: goroutine 20 [syscall]: goroutine 25 [syscall]: goroutine 23 [chan receive]: goroutine 24 [semacquire]: goroutine 26 [syscall]: goroutine 27 [syscall]: goroutine 28 [semacquire]: goroutine 29 [semacquire]: goroutine 31 [chan receive]: goroutine 32 [IO wait]: goroutine 33 [select]: goroutine 34 [select]: goroutine 35 [select]: goroutine 36 [select]: goroutine 37 [select]: goroutine 62 [select]: goroutine 63 [runnable]: goroutine 43 [select]: goroutine 65 [chan receive]: goroutine 49 [select]: goroutine 55 [select]: goroutine 61 [select]: |
Interesting bug. I can see how this happens. Thanks! |
I have a globals module containing globals.tf file:
output "aws_route53_zone_id" {
value = "XXXX"
}
output "aws_access_key" {
value = "YYYYY"
}
output "aws_secret_key" {
value = "ZZZZ"
}
If i'll create a tf file that sources it:
module "globals" {
source = "../../src/modules/globals"
}
after terraform get and apply , terraform will crash
The text was updated successfully, but these errors were encountered: