0
0
llucycodes42
This code creates a cloudstack security group named myResourceName. The description field is automatically populated with the name of the security group. You can optionally provide a description of your own.
Shortcut: tf_cloudstack_security_group
resource "cloudstack_security_group" "${myResourceName}" {
name = "my-${myResourceName}"
description = "my-description-${myResourceName}"
}