resource "aws_s3_object" "config" {
  bucket = var.bucket
  key    = var.config

  content_type = "application/json"
  content      = jsonencode(var.args)
}
