Skip to content

tinystacks/terraform-module-parser

Repository files navigation

@tinystacks/terraform-module-parser

A Terraform parser for the resources created by the tinystacks-terraform-modules library. Intended as a plugin for @tinystacks/precloud.

How To Use

By default, this parser plugin is included as a peer dependency of the precloud cli and is therefore always available, though it is deprioritized over any explicitly configured parsers.

To increase the priority of this parser, you can install this package as a dev dependency and add it to the top of the terraformParsers array in your smoke test config.

npm i -D @tinystacks/terraform-module-parser

{
  // ...
  "terraformParsers": [
    "@tinystacks/terraform-module-parser"
    // ...other parsers
  ]
}

Suppported Resources

This module will parse the following resources from the hashicorp/aws provider if they originate from a module published as part of tinystacks-terraform-modules.

  1. Sqs Queues (aws_sqs_queue)
  2. S3 Buckets (aws_s3_bucket)
  3. Elastic IPs (aws_vpc)
  4. Vpcs (aws_nat_gateway)
  5. Nat Gateways (aws_eip)
  6. Subnets (aws_subnet)
  7. Route Table Associations (aws_route_table_association)
  8. Routes (aws_route)
  9. Route Tables (aws_route_table)
  10. Internet Gateways (aws_internet_gateway)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages