0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-06-30 02:31:10 +00:00
terraform-provider-proxmox/proxmoxtf/datasource/firewall/security_groups.go
Pavel Boldyrev efd0d7b466
chore: remove unused code (#1236)
Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com>
2024-04-24 20:52:41 -04:00

28 lines
736 B
Go

/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package firewall
import (
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
)
const (
mkSecurityGroupsSecurityGroupNames = "security_group_names"
)
// SecurityGroupsSchema defines the schema for the security groups.
func SecurityGroupsSchema() map[string]*schema.Schema {
return map[string]*schema.Schema{
mkSecurityGroupsSecurityGroupNames: {
Type: schema.TypeList,
Description: "Security Group Names",
Computed: true,
Elem: &schema.Schema{Type: schema.TypeString},
},
}
}