terraform {
  required_version = ">= 1.6, < 2.0.0"
}

module "naming" {
  source = "./modules/naming"

  context = {
    application = "course"
    environment = "learning"
  }
}

output "name_prefix" {
  description = "Stable name prefix from the naming module."
  value       = module.naming.prefix
}
