Skip to content

Latest commit

 

History

History
69 lines (48 loc) · 896 Bytes

aviatrix_caller_identity.md

File metadata and controls

69 lines (48 loc) · 896 Bytes

aviatrix_caller_identity

back

Index

Terraform

terraform {
  required_providers {
    aviatrix = ">= 2.18.2"
  }
}

top

Example Usage

module "aviatrix_caller_identity" {
  source = "./modules/aviatrix/d/aviatrix_caller_identity"

}

top

Variables

top

Datasource

data "aviatrix_caller_identity" "this" {
}

top

Outputs

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
}

top