1. Packages
  2. OpenStack
  3. API Docs
  4. compute
  5. QuotaSetV2
OpenStack v3.15.1 published on Thursday, Feb 1, 2024 by Pulumi

openstack.compute.QuotaSetV2

Explore with Pulumi AI

openstack logo
OpenStack v3.15.1 published on Thursday, Feb 1, 2024 by Pulumi

    Manages a V2 compute quotaset resource within OpenStack.

    Note: This usually requires admin privileges.

    Note: This resource has a no-op deletion so no actual actions will be done against the OpenStack API in case of delete call.

    Note: This resource has all-in creation so all optional quota arguments that were not specified are created with zero value.

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using OpenStack = Pulumi.OpenStack;
    
    return await Deployment.RunAsync(() => 
    {
        var project1 = new OpenStack.Identity.Project("project1");
    
        var quotaset1 = new OpenStack.Compute.QuotaSetV2("quotaset1", new()
        {
            ProjectId = project1.Id,
            KeyPairs = 10,
            Ram = 40960,
            Cores = 32,
            Instances = 20,
            ServerGroups = 4,
            ServerGroupMembers = 8,
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-openstack/sdk/v3/go/openstack/compute"
    	"github.com/pulumi/pulumi-openstack/sdk/v3/go/openstack/identity"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		project1, err := identity.NewProject(ctx, "project1", nil)
    		if err != nil {
    			return err
    		}
    		_, err = compute.NewQuotaSetV2(ctx, "quotaset1", &compute.QuotaSetV2Args{
    			ProjectId:          project1.ID(),
    			KeyPairs:           pulumi.Int(10),
    			Ram:                pulumi.Int(40960),
    			Cores:              pulumi.Int(32),
    			Instances:          pulumi.Int(20),
    			ServerGroups:       pulumi.Int(4),
    			ServerGroupMembers: pulumi.Int(8),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.openstack.identity.Project;
    import com.pulumi.openstack.compute.QuotaSetV2;
    import com.pulumi.openstack.compute.QuotaSetV2Args;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var project1 = new Project("project1");
    
            var quotaset1 = new QuotaSetV2("quotaset1", QuotaSetV2Args.builder()        
                .projectId(project1.id())
                .keyPairs(10)
                .ram(40960)
                .cores(32)
                .instances(20)
                .serverGroups(4)
                .serverGroupMembers(8)
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_openstack as openstack
    
    project1 = openstack.identity.Project("project1")
    quotaset1 = openstack.compute.QuotaSetV2("quotaset1",
        project_id=project1.id,
        key_pairs=10,
        ram=40960,
        cores=32,
        instances=20,
        server_groups=4,
        server_group_members=8)
    
    import * as pulumi from "@pulumi/pulumi";
    import * as openstack from "@pulumi/openstack";
    
    const project1 = new openstack.identity.Project("project1", {});
    const quotaset1 = new openstack.compute.QuotaSetV2("quotaset1", {
        projectId: project1.id,
        keyPairs: 10,
        ram: 40960,
        cores: 32,
        instances: 20,
        serverGroups: 4,
        serverGroupMembers: 8,
    });
    
    resources:
      project1:
        type: openstack:identity:Project
      quotaset1:
        type: openstack:compute:QuotaSetV2
        properties:
          projectId: ${project1.id}
          keyPairs: 10
          ram: 40960
          cores: 32
          instances: 20
          serverGroups: 4
          serverGroupMembers: 8
    

    Create QuotaSetV2 Resource

    new QuotaSetV2(name: string, args: QuotaSetV2Args, opts?: CustomResourceOptions);
    @overload
    def QuotaSetV2(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   cores: Optional[int] = None,
                   fixed_ips: Optional[int] = None,
                   floating_ips: Optional[int] = None,
                   injected_file_content_bytes: Optional[int] = None,
                   injected_file_path_bytes: Optional[int] = None,
                   injected_files: Optional[int] = None,
                   instances: Optional[int] = None,
                   key_pairs: Optional[int] = None,
                   metadata_items: Optional[int] = None,
                   project_id: Optional[str] = None,
                   ram: Optional[int] = None,
                   region: Optional[str] = None,
                   security_group_rules: Optional[int] = None,
                   security_groups: Optional[int] = None,
                   server_group_members: Optional[int] = None,
                   server_groups: Optional[int] = None)
    @overload
    def QuotaSetV2(resource_name: str,
                   args: QuotaSetV2Args,
                   opts: Optional[ResourceOptions] = None)
    func NewQuotaSetV2(ctx *Context, name string, args QuotaSetV2Args, opts ...ResourceOption) (*QuotaSetV2, error)
    public QuotaSetV2(string name, QuotaSetV2Args args, CustomResourceOptions? opts = null)
    public QuotaSetV2(String name, QuotaSetV2Args args)
    public QuotaSetV2(String name, QuotaSetV2Args args, CustomResourceOptions options)
    
    type: openstack:compute:QuotaSetV2
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args QuotaSetV2Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args QuotaSetV2Args
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args QuotaSetV2Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args QuotaSetV2Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args QuotaSetV2Args
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    QuotaSetV2 Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The QuotaSetV2 resource accepts the following input properties:

    ProjectId string
    ID of the project to manage quotas. Changing this creates a new quotaset.
    Cores int
    Quota value for cores. Changing this updates the existing quotaset.
    FixedIps int
    Quota value for fixed IPs. Changing this updates the existing quotaset.
    FloatingIps int
    Quota value for floating IPs. Changing this updates the existing quotaset.
    InjectedFileContentBytes int
    Quota value for content bytes of injected files. Changing this updates the existing quotaset.
    InjectedFilePathBytes int
    Quota value for path bytes of injected files. Changing this updates the existing quotaset.
    InjectedFiles int
    Quota value for injected files. Changing this updates the existing quotaset.
    Instances int
    Quota value for instances. Changing this updates the existing quotaset.
    KeyPairs int
    Quota value for key pairs. Changing this updates the existing quotaset.
    MetadataItems int
    Quota value for metadata items. Changing this updates the existing quotaset.
    Ram int
    Quota value for RAM. Changing this updates the existing quotaset.
    Region string
    The region in which to create the volume. If omitted, the region argument of the provider is used. Changing this creates a new quotaset.
    SecurityGroupRules int
    Quota value for security group rules. Changing this updates the existing quotaset.
    SecurityGroups int
    Quota value for security groups. Changing this updates the existing quotaset.
    ServerGroupMembers int
    Quota value for server groups members. Changing this updates the existing quotaset.
    ServerGroups int
    Quota value for server groups. Changing this updates the existing quotaset.
    ProjectId string
    ID of the project to manage quotas. Changing this creates a new quotaset.
    Cores int
    Quota value for cores. Changing this updates the existing quotaset.
    FixedIps int
    Quota value for fixed IPs. Changing this updates the existing quotaset.
    FloatingIps int
    Quota value for floating IPs. Changing this updates the existing quotaset.
    InjectedFileContentBytes int
    Quota value for content bytes of injected files. Changing this updates the existing quotaset.
    InjectedFilePathBytes int
    Quota value for path bytes of injected files. Changing this updates the existing quotaset.
    InjectedFiles int
    Quota value for injected files. Changing this updates the existing quotaset.
    Instances int
    Quota value for instances. Changing this updates the existing quotaset.
    KeyPairs int
    Quota value for key pairs. Changing this updates the existing quotaset.
    MetadataItems int
    Quota value for metadata items. Changing this updates the existing quotaset.
    Ram int
    Quota value for RAM. Changing this updates the existing quotaset.
    Region string
    The region in which to create the volume. If omitted, the region argument of the provider is used. Changing this creates a new quotaset.
    SecurityGroupRules int
    Quota value for security group rules. Changing this updates the existing quotaset.
    SecurityGroups int
    Quota value for security groups. Changing this updates the existing quotaset.
    ServerGroupMembers int
    Quota value for server groups members. Changing this updates the existing quotaset.
    ServerGroups int
    Quota value for server groups. Changing this updates the existing quotaset.
    projectId String
    ID of the project to manage quotas. Changing this creates a new quotaset.
    cores Integer
    Quota value for cores. Changing this updates the existing quotaset.
    fixedIps Integer
    Quota value for fixed IPs. Changing this updates the existing quotaset.
    floatingIps Integer
    Quota value for floating IPs. Changing this updates the existing quotaset.
    injectedFileContentBytes Integer
    Quota value for content bytes of injected files. Changing this updates the existing quotaset.
    injectedFilePathBytes Integer
    Quota value for path bytes of injected files. Changing this updates the existing quotaset.
    injectedFiles Integer
    Quota value for injected files. Changing this updates the existing quotaset.
    instances Integer
    Quota value for instances. Changing this updates the existing quotaset.
    keyPairs Integer
    Quota value for key pairs. Changing this updates the existing quotaset.
    metadataItems Integer
    Quota value for metadata items. Changing this updates the existing quotaset.
    ram Integer
    Quota value for RAM. Changing this updates the existing quotaset.
    region String
    The region in which to create the volume. If omitted, the region argument of the provider is used. Changing this creates a new quotaset.
    securityGroupRules Integer
    Quota value for security group rules. Changing this updates the existing quotaset.
    securityGroups Integer
    Quota value for security groups. Changing this updates the existing quotaset.
    serverGroupMembers Integer
    Quota value for server groups members. Changing this updates the existing quotaset.
    serverGroups Integer
    Quota value for server groups. Changing this updates the existing quotaset.
    projectId string
    ID of the project to manage quotas. Changing this creates a new quotaset.
    cores number
    Quota value for cores. Changing this updates the existing quotaset.
    fixedIps number
    Quota value for fixed IPs. Changing this updates the existing quotaset.
    floatingIps number
    Quota value for floating IPs. Changing this updates the existing quotaset.
    injectedFileContentBytes number
    Quota value for content bytes of injected files. Changing this updates the existing quotaset.
    injectedFilePathBytes number
    Quota value for path bytes of injected files. Changing this updates the existing quotaset.
    injectedFiles number
    Quota value for injected files. Changing this updates the existing quotaset.
    instances number
    Quota value for instances. Changing this updates the existing quotaset.
    keyPairs number
    Quota value for key pairs. Changing this updates the existing quotaset.
    metadataItems number
    Quota value for metadata items. Changing this updates the existing quotaset.
    ram number
    Quota value for RAM. Changing this updates the existing quotaset.
    region string
    The region in which to create the volume. If omitted, the region argument of the provider is used. Changing this creates a new quotaset.
    securityGroupRules number
    Quota value for security group rules. Changing this updates the existing quotaset.
    securityGroups number
    Quota value for security groups. Changing this updates the existing quotaset.
    serverGroupMembers number
    Quota value for server groups members. Changing this updates the existing quotaset.
    serverGroups number
    Quota value for server groups. Changing this updates the existing quotaset.
    project_id str
    ID of the project to manage quotas. Changing this creates a new quotaset.
    cores int
    Quota value for cores. Changing this updates the existing quotaset.
    fixed_ips int
    Quota value for fixed IPs. Changing this updates the existing quotaset.
    floating_ips int
    Quota value for floating IPs. Changing this updates the existing quotaset.
    injected_file_content_bytes int
    Quota value for content bytes of injected files. Changing this updates the existing quotaset.
    injected_file_path_bytes int
    Quota value for path bytes of injected files. Changing this updates the existing quotaset.
    injected_files int
    Quota value for injected files. Changing this updates the existing quotaset.
    instances int
    Quota value for instances. Changing this updates the existing quotaset.
    key_pairs int
    Quota value for key pairs. Changing this updates the existing quotaset.
    metadata_items int
    Quota value for metadata items. Changing this updates the existing quotaset.
    ram int
    Quota value for RAM. Changing this updates the existing quotaset.
    region str
    The region in which to create the volume. If omitted, the region argument of the provider is used. Changing this creates a new quotaset.
    security_group_rules int
    Quota value for security group rules. Changing this updates the existing quotaset.
    security_groups int
    Quota value for security groups. Changing this updates the existing quotaset.
    server_group_members int
    Quota value for server groups members. Changing this updates the existing quotaset.
    server_groups int
    Quota value for server groups. Changing this updates the existing quotaset.
    projectId String
    ID of the project to manage quotas. Changing this creates a new quotaset.
    cores Number
    Quota value for cores. Changing this updates the existing quotaset.
    fixedIps Number
    Quota value for fixed IPs. Changing this updates the existing quotaset.
    floatingIps Number
    Quota value for floating IPs. Changing this updates the existing quotaset.
    injectedFileContentBytes Number
    Quota value for content bytes of injected files. Changing this updates the existing quotaset.
    injectedFilePathBytes Number
    Quota value for path bytes of injected files. Changing this updates the existing quotaset.
    injectedFiles Number
    Quota value for injected files. Changing this updates the existing quotaset.
    instances Number
    Quota value for instances. Changing this updates the existing quotaset.
    keyPairs Number
    Quota value for key pairs. Changing this updates the existing quotaset.
    metadataItems Number
    Quota value for metadata items. Changing this updates the existing quotaset.
    ram Number
    Quota value for RAM. Changing this updates the existing quotaset.
    region String
    The region in which to create the volume. If omitted, the region argument of the provider is used. Changing this creates a new quotaset.
    securityGroupRules Number
    Quota value for security group rules. Changing this updates the existing quotaset.
    securityGroups Number
    Quota value for security groups. Changing this updates the existing quotaset.
    serverGroupMembers Number
    Quota value for server groups members. Changing this updates the existing quotaset.
    serverGroups Number
    Quota value for server groups. Changing this updates the existing quotaset.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the QuotaSetV2 resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing QuotaSetV2 Resource

    Get an existing QuotaSetV2 resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: QuotaSetV2State, opts?: CustomResourceOptions): QuotaSetV2
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cores: Optional[int] = None,
            fixed_ips: Optional[int] = None,
            floating_ips: Optional[int] = None,
            injected_file_content_bytes: Optional[int] = None,
            injected_file_path_bytes: Optional[int] = None,
            injected_files: Optional[int] = None,
            instances: Optional[int] = None,
            key_pairs: Optional[int] = None,
            metadata_items: Optional[int] = None,
            project_id: Optional[str] = None,
            ram: Optional[int] = None,
            region: Optional[str] = None,
            security_group_rules: Optional[int] = None,
            security_groups: Optional[int] = None,
            server_group_members: Optional[int] = None,
            server_groups: Optional[int] = None) -> QuotaSetV2
    func GetQuotaSetV2(ctx *Context, name string, id IDInput, state *QuotaSetV2State, opts ...ResourceOption) (*QuotaSetV2, error)
    public static QuotaSetV2 Get(string name, Input<string> id, QuotaSetV2State? state, CustomResourceOptions? opts = null)
    public static QuotaSetV2 get(String name, Output<String> id, QuotaSetV2State state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Cores int
    Quota value for cores. Changing this updates the existing quotaset.
    FixedIps int
    Quota value for fixed IPs. Changing this updates the existing quotaset.
    FloatingIps int
    Quota value for floating IPs. Changing this updates the existing quotaset.
    InjectedFileContentBytes int
    Quota value for content bytes of injected files. Changing this updates the existing quotaset.
    InjectedFilePathBytes int
    Quota value for path bytes of injected files. Changing this updates the existing quotaset.
    InjectedFiles int
    Quota value for injected files. Changing this updates the existing quotaset.
    Instances int
    Quota value for instances. Changing this updates the existing quotaset.
    KeyPairs int
    Quota value for key pairs. Changing this updates the existing quotaset.
    MetadataItems int
    Quota value for metadata items. Changing this updates the existing quotaset.
    ProjectId string
    ID of the project to manage quotas. Changing this creates a new quotaset.
    Ram int
    Quota value for RAM. Changing this updates the existing quotaset.
    Region string
    The region in which to create the volume. If omitted, the region argument of the provider is used. Changing this creates a new quotaset.
    SecurityGroupRules int
    Quota value for security group rules. Changing this updates the existing quotaset.
    SecurityGroups int
    Quota value for security groups. Changing this updates the existing quotaset.
    ServerGroupMembers int
    Quota value for server groups members. Changing this updates the existing quotaset.
    ServerGroups int
    Quota value for server groups. Changing this updates the existing quotaset.
    Cores int
    Quota value for cores. Changing this updates the existing quotaset.
    FixedIps int
    Quota value for fixed IPs. Changing this updates the existing quotaset.
    FloatingIps int
    Quota value for floating IPs. Changing this updates the existing quotaset.
    InjectedFileContentBytes int
    Quota value for content bytes of injected files. Changing this updates the existing quotaset.
    InjectedFilePathBytes int
    Quota value for path bytes of injected files. Changing this updates the existing quotaset.
    InjectedFiles int
    Quota value for injected files. Changing this updates the existing quotaset.
    Instances int
    Quota value for instances. Changing this updates the existing quotaset.
    KeyPairs int
    Quota value for key pairs. Changing this updates the existing quotaset.
    MetadataItems int
    Quota value for metadata items. Changing this updates the existing quotaset.
    ProjectId string
    ID of the project to manage quotas. Changing this creates a new quotaset.
    Ram int
    Quota value for RAM. Changing this updates the existing quotaset.
    Region string
    The region in which to create the volume. If omitted, the region argument of the provider is used. Changing this creates a new quotaset.
    SecurityGroupRules int
    Quota value for security group rules. Changing this updates the existing quotaset.
    SecurityGroups int
    Quota value for security groups. Changing this updates the existing quotaset.
    ServerGroupMembers int
    Quota value for server groups members. Changing this updates the existing quotaset.
    ServerGroups int
    Quota value for server groups. Changing this updates the existing quotaset.
    cores Integer
    Quota value for cores. Changing this updates the existing quotaset.
    fixedIps Integer
    Quota value for fixed IPs. Changing this updates the existing quotaset.
    floatingIps Integer
    Quota value for floating IPs. Changing this updates the existing quotaset.
    injectedFileContentBytes Integer
    Quota value for content bytes of injected files. Changing this updates the existing quotaset.
    injectedFilePathBytes Integer
    Quota value for path bytes of injected files. Changing this updates the existing quotaset.
    injectedFiles Integer
    Quota value for injected files. Changing this updates the existing quotaset.
    instances Integer
    Quota value for instances. Changing this updates the existing quotaset.
    keyPairs Integer
    Quota value for key pairs. Changing this updates the existing quotaset.
    metadataItems Integer
    Quota value for metadata items. Changing this updates the existing quotaset.
    projectId String
    ID of the project to manage quotas. Changing this creates a new quotaset.
    ram Integer
    Quota value for RAM. Changing this updates the existing quotaset.
    region String
    The region in which to create the volume. If omitted, the region argument of the provider is used. Changing this creates a new quotaset.
    securityGroupRules Integer
    Quota value for security group rules. Changing this updates the existing quotaset.
    securityGroups Integer
    Quota value for security groups. Changing this updates the existing quotaset.
    serverGroupMembers Integer
    Quota value for server groups members. Changing this updates the existing quotaset.
    serverGroups Integer
    Quota value for server groups. Changing this updates the existing quotaset.
    cores number
    Quota value for cores. Changing this updates the existing quotaset.
    fixedIps number
    Quota value for fixed IPs. Changing this updates the existing quotaset.
    floatingIps number
    Quota value for floating IPs. Changing this updates the existing quotaset.
    injectedFileContentBytes number
    Quota value for content bytes of injected files. Changing this updates the existing quotaset.
    injectedFilePathBytes number
    Quota value for path bytes of injected files. Changing this updates the existing quotaset.
    injectedFiles number
    Quota value for injected files. Changing this updates the existing quotaset.
    instances number
    Quota value for instances. Changing this updates the existing quotaset.
    keyPairs number
    Quota value for key pairs. Changing this updates the existing quotaset.
    metadataItems number
    Quota value for metadata items. Changing this updates the existing quotaset.
    projectId string
    ID of the project to manage quotas. Changing this creates a new quotaset.
    ram number
    Quota value for RAM. Changing this updates the existing quotaset.
    region string
    The region in which to create the volume. If omitted, the region argument of the provider is used. Changing this creates a new quotaset.
    securityGroupRules number
    Quota value for security group rules. Changing this updates the existing quotaset.
    securityGroups number
    Quota value for security groups. Changing this updates the existing quotaset.
    serverGroupMembers number
    Quota value for server groups members. Changing this updates the existing quotaset.
    serverGroups number
    Quota value for server groups. Changing this updates the existing quotaset.
    cores int
    Quota value for cores. Changing this updates the existing quotaset.
    fixed_ips int
    Quota value for fixed IPs. Changing this updates the existing quotaset.
    floating_ips int
    Quota value for floating IPs. Changing this updates the existing quotaset.
    injected_file_content_bytes int
    Quota value for content bytes of injected files. Changing this updates the existing quotaset.
    injected_file_path_bytes int
    Quota value for path bytes of injected files. Changing this updates the existing quotaset.
    injected_files int
    Quota value for injected files. Changing this updates the existing quotaset.
    instances int
    Quota value for instances. Changing this updates the existing quotaset.
    key_pairs int
    Quota value for key pairs. Changing this updates the existing quotaset.
    metadata_items int
    Quota value for metadata items. Changing this updates the existing quotaset.
    project_id str
    ID of the project to manage quotas. Changing this creates a new quotaset.
    ram int
    Quota value for RAM. Changing this updates the existing quotaset.
    region str
    The region in which to create the volume. If omitted, the region argument of the provider is used. Changing this creates a new quotaset.
    security_group_rules int
    Quota value for security group rules. Changing this updates the existing quotaset.
    security_groups int
    Quota value for security groups. Changing this updates the existing quotaset.
    server_group_members int
    Quota value for server groups members. Changing this updates the existing quotaset.
    server_groups int
    Quota value for server groups. Changing this updates the existing quotaset.
    cores Number
    Quota value for cores. Changing this updates the existing quotaset.
    fixedIps Number
    Quota value for fixed IPs. Changing this updates the existing quotaset.
    floatingIps Number
    Quota value for floating IPs. Changing this updates the existing quotaset.
    injectedFileContentBytes Number
    Quota value for content bytes of injected files. Changing this updates the existing quotaset.
    injectedFilePathBytes Number
    Quota value for path bytes of injected files. Changing this updates the existing quotaset.
    injectedFiles Number
    Quota value for injected files. Changing this updates the existing quotaset.
    instances Number
    Quota value for instances. Changing this updates the existing quotaset.
    keyPairs Number
    Quota value for key pairs. Changing this updates the existing quotaset.
    metadataItems Number
    Quota value for metadata items. Changing this updates the existing quotaset.
    projectId String
    ID of the project to manage quotas. Changing this creates a new quotaset.
    ram Number
    Quota value for RAM. Changing this updates the existing quotaset.
    region String
    The region in which to create the volume. If omitted, the region argument of the provider is used. Changing this creates a new quotaset.
    securityGroupRules Number
    Quota value for security group rules. Changing this updates the existing quotaset.
    securityGroups Number
    Quota value for security groups. Changing this updates the existing quotaset.
    serverGroupMembers Number
    Quota value for server groups members. Changing this updates the existing quotaset.
    serverGroups Number
    Quota value for server groups. Changing this updates the existing quotaset.

    Import

    Quotasets can be imported using the project_id/region_name, e.g.

     $ pulumi import openstack:compute/quotaSetV2:QuotaSetV2 quotaset_1 2a0f2240-c5e6-41de-896d-e80d97428d6b/region_1
    

    Package Details

    Repository
    OpenStack pulumi/pulumi-openstack
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the openstack Terraform Provider.
    openstack logo
    OpenStack v3.15.1 published on Thursday, Feb 1, 2024 by Pulumi