Download our latest free guide here --
This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list.
GitHub Issues: https://github.com/hashicorp/terraform/issues
IRC: #terraform-tool on Freenode
---
You received this message because you are subscribed to the Google Groups "Terraform" group.
To unsubscribe from this group and stop receiving emails from it, send an email to terraform-too...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/terraform-tool/c613b024-fd20-4730-97cd-744e9b136779%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
output "NS0" {
value = "${aws_route53_delegation_set.main.name_servers.0}"
}
output "NS1" {
value = "${aws_route53_delegation_set.main.name_servers.1}"
}
output "NS2" {
value = "${aws_route53_delegation_set.main.name_servers.2}"
}
output "NS3" {
value = "${aws_route53_delegation_set.main.name_servers.3}"
}The state file has no outputs defined. Define an output
in your configuration with the `output` directive and re-run
`terraform apply` for it to become available. "aws_route53_delegation_set.main": {
"type": "aws_route53_delegation_set",
"primary": {
"id": "N8BY9TYOV8VZT",
"attributes": {
"id": "N8BY9TYOV8VZT",
"name_servers.#": "4",
"name_servers.0": "ns-1494.awsdns-58.org",
"name_servers.1": "ns-1548.awsdns-01.co.uk",
"name_servers.2": "ns-433.awsdns-54.com",
"name_servers.3": "ns-716.awsdns-25.net",
"reference_name": "Static Websites"
}
}
},