Skip to content
Docs

    Projects

    resource nirvana_project

    required Expand Collapse
    name: String

    Project name.

    optional Expand Collapse
    tags?: List[String]

    Tags to attach to the Project.

    computed Expand Collapse
    id: String

    Project ID.

    created_at: Time

    When the Project was created.

    updated_at: Time

    When the Project was updated.

    resources: Attributes

    Resource counts for the project.

    blockchain: Attributes

    Blockchain resources.

    rpc_nodes_dedicated: Int64

    Number of dedicated RPC nodes in the project.

    rpc_nodes_flex: Int64

    Number of flex RPC nodes in the project.

    cloud: Attributes

    Cloud infrastructure resources.

    connect_connections: Int64

    Number of Connect connections in the project.

    nks_clusters: Int64

    Number of NKS clusters in the project.

    nks_node_pools: Int64

    Number of NKS node pools in the project.

    vms: Int64

    Number of VMs in the project.

    volumes: Int64

    Number of volumes in the project.

    vpcs: Int64

    Number of VPCs in the project.

    nirvana_project

    resource "nirvana_project" "example_project" {
      name = "My Project"
      tags = ["production", "ethereum"]
    }
    

    data nirvana_project

    required Expand Collapse
    project_id: String
    computed Expand Collapse
    id: String
    created_at: Time

    When the Project was created.

    name: String

    Project name.

    updated_at: Time

    When the Project was updated.

    tags: List[String]

    Tags attached to the Project.

    resources: Attributes

    Resource counts for the project.

    blockchain: Attributes

    Blockchain resources.

    rpc_nodes_dedicated: Int64

    Number of dedicated RPC nodes in the project.

    rpc_nodes_flex: Int64

    Number of flex RPC nodes in the project.

    cloud: Attributes

    Cloud infrastructure resources.

    connect_connections: Int64

    Number of Connect connections in the project.

    nks_clusters: Int64

    Number of NKS clusters in the project.

    nks_node_pools: Int64

    Number of NKS node pools in the project.

    vms: Int64

    Number of VMs in the project.

    volumes: Int64

    Number of volumes in the project.

    vpcs: Int64

    Number of VPCs in the project.

    nirvana_project

    data "nirvana_project" "example_project" {
      project_id = "project_id"
    }
    

    data nirvana_projects

    optional Expand Collapse
    max_items?: Int64

    Max items to fetch, default: 1000

    computed Expand Collapse
    items: List[Attributes]

    The items returned by the data source

    id: String

    Project ID.

    created_at: Time

    When the Project was created.

    name: String

    Project name.

    resources: Attributes

    Resource counts for the project.

    blockchain: Attributes

    Blockchain resources.

    rpc_nodes_dedicated: Int64

    Number of dedicated RPC nodes in the project.

    rpc_nodes_flex: Int64

    Number of flex RPC nodes in the project.

    cloud: Attributes

    Cloud infrastructure resources.

    connect_connections: Int64

    Number of Connect connections in the project.

    nks_clusters: Int64

    Number of NKS clusters in the project.

    nks_node_pools: Int64

    Number of NKS node pools in the project.

    vms: Int64

    Number of VMs in the project.

    volumes: Int64

    Number of volumes in the project.

    vpcs: Int64

    Number of VPCs in the project.

    tags: List[String]

    Tags attached to the Project.

    updated_at: Time

    When the Project was updated.

    nirvana_projects

    data "nirvana_projects" "example_projects" {
    
    }