terraform {
required_providers {
aviatrix = ">= 2.18.2"
}
}
module "aviatrix_caller_identity" {
source = "./modules/aviatrix/d/aviatrix_caller_identity"
}
data "aviatrix_caller_identity" "this" {
}
output "cid" {
description = "returns a string"
value = data.aviatrix_caller_identity.this.cid
}
output "id" {
description = "returns a string"
value = data.aviatrix_caller_identity.this.id
}
output "this" {
value = aviatrix_caller_identity.this
}