github.com/jmbataller/terraform@v0.6.8-0.20151125192640-b7a12e3a580c/website/source/docs/providers/packet/r/project.html.markdown (about) 1 --- 2 layout: "packet" 3 page_title: "Packet: packet_project" 4 sidebar_current: "docs-packet-resource-project" 5 description: |- 6 Provides a Packet Project resource. 7 --- 8 9 # packet\_project 10 11 Provides a Packet Project resource to allow you manage devices 12 in your projects. 13 14 ## Example Usage 15 16 ``` 17 # Create a new Project 18 resource "packet_project" "tf_project_1" { 19 name = "Terraform Fun" 20 payment_method = "payment-method-id" 21 } 22 ``` 23 24 ## Argument Reference 25 26 The following arguments are supported: 27 28 * `name` - (Required) The name of the Project in Packet.net 29 * `payment_method` - (Required) The id of the payment method on file to use for services created 30 on this project. 31 32 ## Attributes Reference 33 34 The following attributes are exported: 35 36 * `id` - The unique ID of the project 37 * `payment_method` - The id of the payment method on file to use for services created 38 on this project. 39 * `created` - The timestamp for when the Project was created 40 * `updated` - The timestamp for the last time the Project was updated