Skip to content
Snippets Groups Projects
main.tf 350 B
Newer Older
  • Learn to ignore specific revisions
  • data "archive_file" "test_artifact" {
      type        = "zip"
    
    Alex Maras's avatar
    Alex Maras committed
      output_path = "${path.module}/test-artifact.zip"
    
    
      source {
    
    Alex Maras's avatar
    Alex Maras committed
        content  = "test artifact inner value"
    
        filename = "file-inside-archive.txt"
      }
    }
    
    Alex Maras's avatar
    Alex Maras committed
    
    resource "local_file" "test_copy" {
      source   = "${path.module}/test-artifact.zip"
      filename = "${path.module}/test-local-file.zip"
    }