0
0
llucycodes42
The code in the snippet defines a resource called "myResourceName" that has the following attributes: name (string) and description (string). The code also defines a payment_method attribute that points to a payment_method resource.
Shortcut: tf_packet_project
resource "packet_project" "${myResourceName}" {
name = "my-${myResourceName}"
description = "my-description-${myResourceName}"
payment_method = "payment_method-id"
}