You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|**files**| Functions for manipulating files and folders. Examples: check if a file exists, copy a folder and all of its contents. |
23
23
|**gcp**| Functions that make it easier to work with the GCP APIs. Examples: Add labels to a Compute Instance, get the Public IPs of an Instance, Get a list of Instances in a Managed Instance Group, Work with Storage Buckets and Objects. |
24
24
|**helm**| Functions for working with Helm. Examples: Install a Helm chart. |
25
-
|**http-helper**| Functions for making HTTP requests. Examples: make an HTTP request to a URL and check the status code and body contain the expected values, run a simple HTTP server locally. |
25
+
|**httphelper**| Functions for making HTTP requests. Examples: make an HTTP request to a URL and check the status code and body contain the expected values, run a simple HTTP server locally. |
26
26
|**k8s**| Functions that make it easier to work with Kubernetes. Examples: Getting the list of nodes in a cluster, waiting until all nodes in a cluster is ready. |
27
27
|**logger**| A replacement for Go's `t.Log` and `t.Logf` that writes the logs to `stdout` immediately, rather than buffering them until the very end of the test. This makes debugging and iterating easier. |
28
28
|**logger/parser**| Includes functions for parsing out interleaved go test output and piecing out the individual test logs. Used by the [terratest_log_parser](https://github.com/gruntwork-io/terratest/tree/main/cmd/terratest_log_parser) command. |
|**ssh**| Functions to SSH to servers. Examples: SSH to a server, execute a command, and return `stdout` and `stderr`. |
34
34
|**terraform**| Functions for working with Terraform. Examples: run `terraform init`, `terraform apply`, `terraform destroy`. |
35
35
|**terragrunt**| Functions for working with Terragrunt. Examples: run `terragrunt apply --all`, `terragrunt destroy --all`, test stack configurations with dependencies, and work with Terragrunt stacks. |
36
-
|**test_structure**| Functions for structuring your tests to speed up local iteration. Examples: break up your tests into stages so that any stage can be skipped by setting an environment variable. |
36
+
|**teststructure**| Functions for structuring your tests to speed up local iteration. Examples: break up your tests into stages so that any stage can be skipped by setting an environment variable. |
0 commit comments