--- layout: "cloudstack" page_title: "CloudStack: cloudstack_security_group" sidebar_current: "docs-cloudstack-resource-security-group" description: |- Creates a security group. --- # cloudstack\_security\_group Creates a security group. ## Example Usage ``` resource "cloudstack_security_group" "default" { name = "allow_web" description = "Allow access to HTTP and HTTPS" } ``` ## Argument Reference The following arguments are supported: * `name` - (Required) The name of the security group. Changing this forces a new resource to be created. * `description` - (Optional) The description of the security group. Changing this forces a new resource to be created. * `project` - (Optional) The name or ID of the project to create this security group in. Changing this forces a new resource to be created. ## Attributes Reference The following attributes are exported: * `id` - The ID of the security group.