Loading...
Loading...
Terraform infrastructure as code with providers and state management. Use for cloud provisioning.
npx skill4agent add g1joshi/agent-skills terraform# main.tf
provider "aws" {
region = "us-west-2"
}
resource "aws_s3_bucket" "b" {
bucket = "my-tf-test-bucket"
tags = {
Name = "My bucket"
}
}terraform.tfstatetfsectrivyvariable "db_password" {}TF_VAR_