# 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" {}

data "aws_s3_bucket" "security_logs" {
  bucket = "security-${local.account_id}-logs"
}

data "aws_route53_zone" "filtr_com_domain" {
  provider = aws.gdb-delphi-dev

  name         = "filtr.com."
  private_zone = false
}

data "aws_route53_zone" "apollo_stream_domain" {
  provider = aws.gdb-delphi-dev

  name         = "apollo.stream."
  private_zone = false
}

data "aws_sns_topic" "devops_team_notifications" {
  name = "infra-devops_team"
}
