Terraform 1 5
Apply Terraform 1.5 language, CLI, state, testing, migration, and behaviour changes. Load for Terraform work targeting 1.5 or later when the model's knowledge may predate the 2023-06-12 release.From its SKILL.md
npx -y skills add cedws/skills --skill terraform-1-5Assembled 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.6 KB, 289 tokens by cl100k_base, as published. Nobody here has run it
Terraform 1.5
This overview applies when the project's target Terraform version is at least 1.5.
Configuration and validation
- Top-level
checkblocks can continuously validate infrastructure independently of resource lifecycle operations. Each contains one or moreassertblocks and may contain a scoped data source; failed checks warn without halting the operation. - Configuration-driven
importblocks make adoption of existing resources visible in plans. Terraform 1.5 requires a literal string forid; expression support arrives in Terraform 1.6. terraform plan -generate-config-out=PATHcan generate initial resource configuration for import targets that have no resource block. Generated configuration requires review before apply.
import {
to = aws_s3_bucket.logs
id = "company-logs"
}
Functions and operations
plantimestamp()returns a stable timestamp selected during planning, unliketimestamp(), whose result is determined during apply.strcontains(string, substring)tests whether a string contains a substring.- Local apply operations periodically persist state snapshots and attempt another snapshot after an interrupt, reducing the potential loss window during an aborted apply.
Compatibility
- Terraform 1.5 is the final minor series supporting macOS 10.13 and 10.14 and legacy Windows versions older than Windows 10 or Windows Server 2016.
What ships with it: 1 file
196 B alongside SKILL.md
agents/
- openai.yaml196 B