github.com/terramate-io/tf@v0.0.0-20230830114523-fce866b4dfcd/terraform/testdata/import-id-module/main.tf (about)

     1  module "child" {
     2    source = "./child"
     3  }
     4  
     5  import {
     6    to = aws_lb.foo
     7    id = module.child.lb_id
     8  }
     9  
    10  resource "aws_lb" "foo" {}