Can terraform test be used to verify whether or not checks fail?

We have a terraform module that people can use to create s3 buckets in aws. We provide this module to ensure adherence to certain rules that we define for ur s3 buckets.

The desired name for the bucket is passed to the module via a variable

variable "s3_bucket_name" {
  description = "S3 bucket name"
  type        = string
}

Recently we also defined a naming convention for our buckets that can be declared using a regular expression. I could use the regular expression like so:

locals {
    s3_bucket_naming_convention_regex = "<some regex>"
}
variable "s3_bucket_name" {
  description = "S3 bucket name"
  type        = string
  validation {
    condition     = regex(local.s3_bucket_naming_convention_regex, var.image_id)
    error_message = "s3_bucket_name does not match naming convention"
  }
}

however I don’t want to do that because we have existing buckets using the module that don’t conform to the naming convention and we don’t want to cause a failure in future plans/applies.

For that reason I thought I’d use a terraform check like so:

check "s3_bucket_name" {
  assert {
    condition     = regex(local.s3_bucket_naming_convention_regex, var.s3_bucket_name)
    error_message = "s3_bucket_name does not match naming convention."
  }
}

The regular expression is quite complicated so I would now like to use terraform test to verify that the check fails when a non-conforming bucket name is specified. How do I do that? Is it possible to write a test that verifies that a check fails when some value is passed to var.s3_bucket_name?

Hi @jamiekt,

The mechanism for writing a test for something that’s supposed to fail any kind of checkable object (which includes both check blocks and objects that have their own preconditions and postconditions) is called “expecting failures”:

You can include the absolute address of your check block in the set of checkable objects that are expected to fail, in which case the test will only pass off there’s at least one failing check result associated with that block.

perfect, thank you as always @apparentlymart