Skip to content
Snippets Groups Projects
main.tf 197 B
Newer Older
  • Learn to ignore specific revisions
  • data "archive_file" "test_artifact" {
      type        = "zip"
      output_path = "test-artifact.zip"
    
      source {
        content = "test artifact inner value"
        filename = "file-inside-archive.txt"
      }
    }