Skip to content

Latest commit

 

History

History
95 lines (70 loc) · 2.34 KB

File metadata and controls

95 lines (70 loc) · 2.34 KB
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"
}

With Account and Domain

data "cloudstack_domain" "my_domain" {
  filter {
    name  = "name"
    value = "ROOT"
  }
}

resource "cloudstack_security_group" "account_sg" {
  name        = "allow_web"
  description = "Allow access to HTTP and HTTPS"
  account     = "my-account"
  domainid    = data.cloudstack_domain.my_domain.id
}

With Project

resource "cloudstack_project" "my_project" {
  name        = "my-project"
  displaytext = "My Project"
}

resource "cloudstack_security_group" "project_sg" {
  name        = "allow_web"
  description = "Allow access to HTTP and HTTPS"
  projectid   = cloudstack_project.my_project.id
}

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.

  • account - (Optional) The account name to create the security group for. Must be used with domainid. Cannot be used with projectid. Changing this forces a new resource to be created.

  • domainid - (Optional) The name or ID of the domain to create this security group in. Changing this forces a new resource to be created.

  • projectid - (Optional) The name or ID of the project to create this security group in. Cannot be used with account. Changing this forces a new resource to be created.

Attributes Reference

The following attributes are exported:

  • id - The ID of the security group.

Import

Security groups can be imported; use <SECURITY GROUP ID> as the import ID. For example:

terraform import cloudstack_security_group.default e54970f1-f563-46dd-a365-2b2e9b78c54b

When importing into a project you need to prefix the import ID with the project name:

terraform import cloudstack_security_group.default my-project/e54970f1-f563-46dd-a365-2b2e9b78c54b