github.com/danp/terraform@v0.9.5-0.20170426144147-39d740081351/website/source/docs/providers/scaleway/d/bootscript.html.markdown (about) 1 --- 2 layout: "scaleway" 3 page_title: "Scaleway: scaleway_bootscript" 4 sidebar_current: "docs-scaleway-datasource-bootscript" 5 description: |- 6 Get information on a Scaleway bootscript. 7 --- 8 9 # scaleway\_bootscript 10 11 Use this data source to get the ID of a registered Bootscript for use with the 12 `scaleway_server` resource. 13 14 ## Example Usage 15 16 ```hcl 17 data "scaleway_bootscript" "debug" { 18 architecture = "arm" 19 name_filter = "Rescue" 20 } 21 ``` 22 23 ## Argument Reference 24 25 * `architecture` - (Optional) any supported Scaleway architecture, e.g. `x86_64`, `arm` 26 27 * `name_filter` - (Optional) Regexp to match Bootscript name by 28 29 * `name` - (Optional) Exact name of desired Bootscript 30 31 ## Attributes Reference 32 33 `id` is set to the ID of the found Bootscript. In addition, the following attributes 34 are exported: 35 36 * `architecture` - architecture of the Bootscript, e.g. `arm` or `x86_64` 37 38 * `organization` - uuid of the organization owning this Bootscript 39 40 * `public` - is this a public bootscript 41 42 * `boot_cmd_args` - command line arguments used for booting 43 44 * `dtb` - path to Device Tree Blob detailing hardware information 45 46 * `initrd` - URL to initial ramdisk content 47 48 * `kernel` - URL to used kernel 49