terraform-provider-archive
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.
- Preserve original file permissions when archiving - Apply output_file_mode to archive file only - Add parseFileMode function for consistent mode parsing - Set default mode (0644) for content without...
### Terraform CLI and Provider Versions Terraform v1.8.3 hashicorp/archive version 2.6.0 ### Terraform Configuration ```terraform data "archive_file" "create_tar" { type = "tar.gz" output_path = "mytar.tgz" output_file_mode = 0644 source {...
…, as the item at the path being processed is a symlink and according to https://pkg.go.dev/path/filepath#WalkFunc, returning filepath.SkipDir from WalkFunc when the item being processed is not a directory will...
### Terraform CLI and Provider Versions Terraform v1.9.4 on windows_amd64 - Finding hashicorp/archive versions matching "2.5.0"... - Using previously-installed hashicorp/archive v2.5.0 ### Terraform Configuration ```terraform # Achive the files to...