You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/internal/configs/testdata/valid-modules/import-blocks/main.tf

26 lines
419 B

terraform {
required_providers {
localname = {
source = "hashicorp/random"
}
random = {
source = "hashicorp/random"
}
}
}
provider "random" {
alias = "thisone"
}
import {
to = random_string.test1
provider = localname
id = "importlocalname"
}
import {
to = random_string.test2
provider = random.thisone
id = "importaliased"
}