github.com/jrasell/terraform@v0.6.17-0.20160523115548-2652f5232949/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 on Packet.net 29 * `payment_method` - (Optional) The unique ID of the payment method on file to use for services created 30 in this project. If not given, the project will use the default payment method for your user. 31 32 ## Attributes Reference 33 34 The following attributes are exported: 35 36 * `id` - The unique ID of the project 37 * `payment_method` - The unique ID of the payment method on file to use for services created 38 in this project. 39 * `created` - The timestamp for when the Project was created 40 * `updated` - The timestamp for the last time the Project was updated