data "aws_caller_identity" "current" {}

resource "random_uuid" "master_user_name" {}

resource "random_password" "master_user_password" {
  length      = 24
  special     = true
  min_lower   = 1
  min_upper   = 1
  min_numeric = 1
  min_special = 1
}
