Skip to content

v1.0.0

Latest
Compare
Choose a tag to compare
@sl1pm4t sl1pm4t released this 12 Mar 08:15
· 1 commit to master since this release

Initial release with tfstate_outputs resource.

Example

resource tfstate_outputs "test" {
  output {
    name  = "foo"
    value = "bar"
  }
}

resource "local_file" "state_outputs" {
  content  = "${tfstate_outputs.test.json}"
  filename = "${path.module}/terraform.tfout"
}