agentsclimarketplace

Terraform 1 9

Skill cedws/skills/terraform/skills/terraform-1-9

Apply Terraform 1.9 language, CLI, state, testing, migration, and behaviour changes. Load for Terraform work targeting 1.9 or later when the model's knowledge may predate the 2024-06-26 release.From its SKILL.md

Install
npx -y skills add cedws/skills --skill terraform-1-9

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

3 things to look at

  • 25 days oldThe repository was created 25 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

1.4 KB, 246 tokens by cl100k_base, as published. Nobody here has run it

Terraform 1.9

This overview applies when the project's target Terraform version is at least 1.9.

Expressions and validation

  • Input-variable validation conditions can refer to other input variables, data resources, and other objects in the same module. This permits cross-field and environment-aware validation.
  • templatestring(template, vars) renders template text obtained dynamically, complementing templatefile for templates loaded from a data source or other expression.
variable "min_size" {
  type = number
}

variable "max_size" {
  type = number

  validation {
    condition     = var.max_size >= var.min_size
    error_message = "max_size must not be smaller than min_size."
  }
}

CLI and testing

  • terraform init -json emits machine-readable UI output for automation.
  • Interactive terraform console accepts multi-line expressions when delimiters remain open.
  • Terraform tests can pass dynamically sensitive values to variables without requiring a static sensitive = true declaration on the receiving variable.
  • A moved block can migrate null_resource instances to the built-in terraform_data resource type.

What ships with it: 1 file

196 B alongside SKILL.md

agents/

Keep looking

Skills are one crate of 326,782. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.