Athena Databases not build on Linux

The aws_athena_database resource is not creating when running Terraform on Linux. This started failing in the last few days running 1.1.5 and we have since tried on both 1.1.5 and 1.1.9. We have proved this out using a minimum config of our modules (see attached code snippet) and this works fine on both Mac (Arm) and Windows running 1.1.5 and 1.1.9 but when running on Linux, the resource hangs for over an hour and times out compared to taking <10 seconds on Mac.
The attached code snippet called athena error includes the 2 modules along with a skeleton implementation in athenatest/main.tf which can be executed on different versions of terraform to prove out the error.
Please note we are currently pinning to version 3.74.1 of the AWS provider but have also proven out the issue on the latest version of 4.x seemingly pointing to a core binary bug.

Affected Resource(s)
aws_athena_database.athena
Terraform Configuration Files
Code:

#S3 Bucket Creation
module "buckets" {
  source = "/xxx/terraform-aws-s3buckets"
  deploymentId      = "amittest"
  domainName        = "xxx"
  primaryS3Region   = "xxx"
  secondaryS3Region = "xxxx"
  providers = {
    aws.primary = aws
    aws.secondary = aws.secondary
  }
}
output "buckets" {
  value = module.buckets
}
module "athena" {
  source = "xxx/terraform-aws-athena"
  deploymentName = "xxxx"
  athenaS3BucketName  = module.buckets.primaryS3Bucket
  s3EncryptionKey     = module.buckets.s3KmsKey
}
output "athena" {
  value = module.athena
}

image (2)

Log -

aws_athena_database.athena: Creating...
aws_athena_database.athena: Still creating... [10s elapsed]
aws_athena_database.athena: Still creating... [20s elapsed]
aws_athena_database.athena: Still creating... [30s elapsed]
aws_athena_database.athena: Still creating... [40s elapsed]
aws_athena_database.athena: Still creating... [50s elapsed]
aws_athena_database.athena: Still creating... [1m0s elapsed]
aws_athena_database.athena: Still creating... [1m10s elapsed]
..
..
..

This is on Windows -
image