github.com/terramate-io/tf@v0.0.0-20230830114523-fce866b4dfcd/terraform/testdata/plan-computed-in-function/main.tf (about)

     1  data "aws_data_source" "foo" {
     2  
     3  }
     4  
     5  resource "aws_instance" "bar" {
     6      attr = "${length(data.aws_data_source.foo.computed)}"
     7  }