We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Outputs are not created for resources using configuration with a count variable.
Related: https://www.terraform.io/docs/configuration/resources.html
Current configuration generated for a count of 3:
output "aws_subnet.publicsub" { value = "${aws_subnet.publicsub.id}" }
Should be:
output "aws_subnet.publicsub.0" { value = "${aws_subnet.publicsub.0.id}" } output "aws_subnet.publicsub.1" { value = "${aws_subnet.publicsub.1.id}" } output "aws_subnet.publicsub.2" { value = "${aws_subnet.publicsub.2.id}" }
The text was updated successfully, but these errors were encountered:
u2mejc
No branches or pull requests
Outputs are not created for resources using configuration with a count variable.
Related: https://www.terraform.io/docs/configuration/resources.html
Current configuration generated for a count of 3:
Should be:
The text was updated successfully, but these errors were encountered: