terraform {
required_providers {
alicloud = ">= 1.120.0"
}
}
module "alicloud_account" {
source = "./modules/alicloud/d/alicloud_account"
}
data "alicloud_account" "this" {
}
output "id" {
description = "returns a string"
value = data.alicloud_account.this.id
}
output "this" {
value = alicloud_account.this
}