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
* Follow symlinks when creating archive (#6)
Co-authored-by: moajo <[email protected]>
* Adding changie entries (#6)
* Modifying changie entries (#6)
* Switching to using filepath.EvalSymlinks and adding acceptance test coverage (#6)
* Removing unused constant (#6)
* Checking usage of absolute file path in test (#6)
* Adding further symlink acceptance tests to archive_file data source and resource (#6)
* Cleaning up test fixtures (#6)
* Adding symlink dir in regular dir for test fixtures (#6)
* Calling ToSlash() before Abs() (#6)
* Only call ToSlash() if not using Abs() (#6)
* Calling ToSlash() after calling Abs() (#6)
* Amending final test step in TestAccArchiveFile_Symlinks to use ToSlash() (#6)
* Adding test for multiple directories and files (#6)
* Fix resource test (#6)
* Adding optional attribute for following symlinks (#6)
* Modifying tests to pass on windows (#6)
* Altering attribute name to exclude_symlink_directories, which default to false (#6)
* Updating attribute description and regenerating the documentation (#6)
* Updating change log entries (#6)
* Renaming tests (#6)
* Separating each of the acceptance tests for symlinks into individual tests (#6)
---------
Co-authored-by: moajo <[email protected]>
Copy file name to clipboardExpand all lines: docs/data-sources/file.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -69,6 +69,7 @@ data "archive_file" "lambda_my_function" {
69
69
70
70
### Optional
71
71
72
+
-`exclude_symlink_directories` (Boolean) Boolean flag indicating whether symbolically linked directories should be excluded during the creation of the archive. Defaults to false.
72
73
-`excludes` (Set of String) Specify files to ignore when reading the `source_dir`.
73
74
-`output_file_mode` (String) String that specifies the octal file mode for all archived files. For example: `"0666"`. Setting this will ensure that cross platform usage of this module will not vary the modes of archived files (and ultimately checksums) resulting in more deterministic behavior.
74
75
-`source` (Block Set) Specifies attributes of a single source file to include into the archive. One and only one of `source`, `source_content_filename` (with `source_content`), `source_file`, or `source_dir` must be specified. (see [below for nested schema](#nestedblock--source))
Copy file name to clipboardExpand all lines: docs/resources/file.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,7 @@ description: |-
22
22
23
23
### Optional
24
24
25
+
-`exclude_symlink_directories` (Boolean) Boolean flag indicating whether symbolically linked directories should be excluded during the creation of the archive. Defaults to false.
25
26
-`excludes` (Set of String) Specify files to ignore when reading the `source_dir`.
26
27
-`output_file_mode` (String) String that specifies the octal file mode for all archived files. For example: `"0666"`. Setting this will ensure that cross platform usage of this module will not vary the modes of archived files (and ultimately checksums) resulting in more deterministic behavior.
27
28
-`source` (Block Set) Specifies attributes of a single source file to include into the archive. One and only one of `source`, `source_content_filename` (with `source_content`), `source_file`, or `source_dir` must be specified. (see [below for nested schema](#nestedblock--source))
0 commit comments