# # 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_iam_role" "redlock_flow_logs" {
#   name = "security-redlock_vpc_flow_logs"
# }
#
# data "aws_cloudwatch_log_group" "redlock_logs" {
#   name = "/security/redlock_logs"
# }
#
# data "aws_route53_zone" "apollo_stream_zone" {
#   name         = "apollo.stream."
#   private_zone = false
#   provider     = aws.gdb-delphi-dev
# }
#
# data "aws_route53_zone" "sma_stream_zone" {
#   name         = "sma.stream."
#   private_zone = false
#   provider     = aws.gdb-artistapp-prod
# }
#
# data "aws_kms_key" "default_sqs_key" {
#   key_id = "arn:aws:kms:${var.aws_region_id}:${local.account_id}:alias/default_sqs"
# }
