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 Version v0.12.19 ### Affected Resource(s) archive_file ### Terraform Configuration Files ``` data "http" "datadog" { url = "https://raw.githubusercontent.com/DataDog/datadog-serverless-functions/master/aws/logs_monitoring/lambda_function.py" } data "archive_file" "datadog" { type = "zip" output_path =...

### Terraform Version v0.14.8 ### Affected Data - archive_file ### Terraform Configuration Files ```hcl // Zips the mappings folder into mappings.zip data "archive_file" "lib" { type = "zip" source_file =...

### Expected Behavior This data source: ``` data "archive_file" "salt_configuration" { type = "zip" source_dir = "foo" output_path = "foo.zip" } ``` should construct a zipfile containing the contents of...

enhancement

Trying to create a lambda layer consisting of just the `./node_modules` fails, because the zip file created strips away the node_module parent directory ([example](https://gist.github.com/jerroydmoore/2f9358fdb7099c593eee593aa8326fab)). Ideally, `source_dir` should maintain the parent...

Was confused when I saw this error message during an apply. Figured a fix should be pretty easy.

size/XS

docs: Add `excludes ` to archive data argument list

documentation
size/XS

Hi, ### Terraform Version $ terraform -v Terraform v0.11.3 + provider.archive v1.0.3 + provider.aws v1.12.0 ### Affected Resource(s) Please list the resources as a list, for example: - archive_file -...

bug

Provide a way to pass sensitive content to `archive_file`. At the moment there is no other way to mask a variable or flag an input as sensitive than at the...

Hi there, I am trying to dynamically build go code from source code, zip it and create a lambda out of it. Problem starts because we do not want to...

### Terraform Version Terraform v0.12.24 + provider.archive v1.3.0 + provider.azurerm v2.7.0 + provider.local v1.4.0 + provider.null v2.1.2 + provider.random v2.2.1 ### Affected Resource(s) Please list the resources as a list,...