Skip to content

Latest commit

 

History

History
79 lines (56 loc) · 1.12 KB

alicloud_caller_identity.md

File metadata and controls

79 lines (56 loc) · 1.12 KB

alicloud_caller_identity

back

Index

Terraform

terraform {
  required_providers {
    alicloud = ">= 1.120.0"
  }
}

top

Example Usage

module "alicloud_caller_identity" {
  source = "./modules/alicloud/d/alicloud_caller_identity"

}

top

Variables

top

Datasource

data "alicloud_caller_identity" "this" {
}

top

Outputs

output "account_id" {
  description = "returns a string"
  value       = data.alicloud_caller_identity.this.account_id
}

output "arn" {
  description = "returns a string"
  value       = data.alicloud_caller_identity.this.arn
}

output "id" {
  description = "returns a string"
  value       = data.alicloud_caller_identity.this.id
}

output "identity_type" {
  description = "returns a string"
  value       = data.alicloud_caller_identity.this.identity_type
}

output "this" {
  value = alicloud_caller_identity.this
}

top