0
0
llucycodes42
In the example, the code defines a resource named "openstack_networking_network_v2" and sets the name to be "my-description-${myResourceName}" . The description attribute is also set to "my-description-${myResourceName}" . The value of the description attribute will be used as the tooltip for the resource in the Openstack Dashboard. The value of the name attribute will be the name of the resource in the Openstack Dashboard.
Shortcut: tf_openstack_networking_network_v2
resource "openstack_networking_network_v2" "${myResourceName}" {
name = "my-${myResourceName}"
description = "my-description-${myResourceName}"
admin_state_up = "true"
}