/*
# The attribute `${data.aws_caller_identity.current.account_id}` will be current account number.
data "aws_caller_identity" "current" {}

# The attribue `${data.aws_iam_account_alias.current.account_alias}` will be current account alias
data "aws_iam_account_alias" "current" {}

# According to the security requirements we need to send logs into this bucket.
data "aws_s3_bucket" "security_logs" {
  bucket = "security-${local.account_id}-logs"
}



data "aws_route53_zone" "sma_stream_zone" {
  name         = "sma.stream."
  private_zone = false
}

data "aws_kms_key" "default_sqs_key" {
  key_id = "arn:aws:kms:${var.aws_region_id}:${local.account_id}:alias/default_sqs"
}
*/
