github.com/vtorhonen/terraform@v0.9.0-beta2.0.20170307220345-5d894e4ffda7/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 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 ## Argument Reference 21 22 The following arguments are supported: 23 24 * `server` - (Optional) ID of server to associate IP with 25 26 Field `server` is editable. 27 28 ## Attributes Reference 29 30 The following attributes are exported: 31 32 * `id` - id of the new resource 33 * `ip` - IP of the new resource 34 35 ## Import 36 37 Instances can be imported using the `id`, e.g. 38 39 ``` 40 $ terraform import scaleway_ip.jump_host 5faef9cd-ea9b-4a63-9171-9e26bec03dbc 41 ```