github.com/minamijoyo/terraform@v0.7.8-0.20161029001309-18b3736ba44b/website/source/docs/providers/scaleway/r/ip.html.markdown (about) 1 --- 2 layout: "scaleway" 3 page_title: "Scaleway: ip" 4 sidebar_current: "docs-scaleway-resource-ip" 5 description: |- 6 Manages Scaleway IPs. 7 --- 8 9 # scaleway\_ip 10 11 Provides IPs for ARM servers. This allows IPs to be created, updated and deleted. 12 For additional details please refer to [API documentation](https://developer.scaleway.com/#ips). 13 14 ## Example Usage 15 16 ``` 17 resource "scaleway_ip" "test_ip" { 18 } 19 ``` 20 21 ## Argument Reference 22 23 The following arguments are supported: 24 25 * `server` - (Optional) ID of ARM server to associate IP with 26 27 Field `server` is editable. 28 29 ## Attributes Reference 30 31 The following attributes are exported: 32 33 * `id` - id of the new resource 34 * `ip` - IP of the new resource 35 36 ## Import 37 38 Instances can be imported using the `id`, e.g. 39 40 ``` 41 $ terraform import scaleway_ip.jump_host 5faef9cd-ea9b-4a63-9171-9e26bec03dbc 42 ```