terraform-provider-archive icon indicating copy to clipboard operation
terraform-provider-archive copied to clipboard

Utility provider that provides a data source that can create zip archives for individual files or collections of files.

Results 64 terraform-provider-archive issues
Sort by recently updated
recently updated
newest added

### Terraform CLI and Provider Versions ```sh $ terraform version Terraform v1.2.8 on darwin_arm64 + provider registry.terraform.io/hashicorp/archive v2.2.0 ``` ### Terraform Configuration ```terraform main.tf: data "archive_file" "zip" { type =...

bug

It would be really handy if `data.archive_file` supported glob matching for `excludes`. This would enable configurations such as: ```hcl data "archive_file" "zip" { type = "zip" output_path = "./myzip.zip" source_dir...

Hi there, looks like data.archive_file does not generate archive file during apply. ### Terraform Version Terraform version: 0.11.11 + provider.archive v1.1.0 ### Affected Resource(s) - archive_file ### Terraform Configuration Files...

Hi there, Got an issue when `archive_file` throws an error in case if a source directory contains symlinked folders. One may catch this error when trying to package an application...

bug

_This issue was originally opened by @ponyfleisch as hashicorp/terraform#9904. It was migrated here as part of the [provider split](https://www.hashicorp.com/blog/upcoming-provider-changes-in-terraform-0-10/). The original body of the issue is below._ I'm using AWS...

enhancement

Use Case: I need to build a zip archive to upload to AWS Lambda. Because I am using the NodeJS platform, my zip will typically contain one source file and...

enhancement

### Terraform Version ``` Terraform v0.12.15 + provider.archive v1.3.0 + provider.aws v2.37.0 ``` ### Affected Resource(s) archive_file ### Terraform Configuration Files ```hcl data "archive_file" "lambda" { type = "zip" source_dir...

### Terraform CLI and Provider Versions Terraform v1.2.3 on darwin_amd64 + provider registry.terraform.io/hashicorp/archive v2.2.0 ### Terraform Configuration ```terraform data "archive_file" "input_archive" { type = "zip" source_file = "${path.module}/input.file" output_path =...

bug

Add support for excluding files and directories using a glob expression supplied to `excludes`. In particular, `*` matches any character (except the directory separator) any number of times, and `**`...

dependencies
size/S

Hello! I'm using this provider to create some archives for AWS SSM Distributor. AWS requires each package to have [a manifest with hex SHA256 sums](https://docs.aws.amazon.com/systems-manager/latest/userguide/distributor-working-with-packages-create.html#packages-manifest). As far as I can...

documentation
size/XS