github.com/hashicorp/packer@v1.14.3/command/test-fixtures/hcp/dup_build_blocks.pkr.hcl (about)

     1  source file "test" {
     2  	content = " "
     3  	target = "output"
     4  }
     5  
     6  build {
     7  	description = "Some build description"
     8  
     9  	hcp_packer_registry {
    10  		bucket_name = "bucket-slug"
    11  		description = "Some override description"
    12  	}
    13  
    14  	sources = [
    15  		"sources.file.test",
    16  	]
    17  }
    18  
    19  build {
    20  	description = "Some other build"
    21  
    22  	hcp_packer_registry {
    23  		bucket_name = "bucket-bis"
    24  	}
    25  
    26  	sources = [
    27  		"sources.file.test",
    28  	]
    29  }