github.com/opentofu/opentofu@v1.7.1/internal/tofu/testdata/import-id-reference/main.tf (about)

     1  variable "the_id" {
     2    default = "123"
     3  }
     4  
     5  module "refmod" {
     6  	source = "./mod"
     7  }
     8  
     9  import {
    10    to = module.refmod.aws_instance.foo
    11    id = var.the_id
    12  }
    13