Google Cloud Classic v7.29.0 published on Wednesday, Jun 26, 2024 by Pulumi
gcp.organizations.getProject
Explore with Pulumi AI
Use this data source to get project details. For more information see API
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const project = gcp.organizations.getProject({});
export const projectNumber = project.then(project => project.number);
import pulumi
import pulumi_gcp as gcp
project = gcp.organizations.get_project()
pulumi.export("projectNumber", project.number)
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/organizations"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
project, err := organizations.LookupProject(ctx, nil, nil)
if err != nil {
return err
}
ctx.Export("projectNumber", project.Number)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var project = Gcp.Organizations.GetProject.Invoke();
return new Dictionary<string, object?>
{
["projectNumber"] = project.Apply(getProjectResult => getProjectResult.Number),
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.organizations.OrganizationsFunctions;
import com.pulumi.gcp.organizations.inputs.GetProjectArgs;
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) {
final var project = OrganizationsFunctions.getProject();
ctx.export("projectNumber", project.applyValue(getProjectResult -> getProjectResult.number()));
}
}
variables:
project:
fn::invoke:
Function: gcp:organizations:getProject
Arguments: {}
outputs:
projectNumber: ${project.number}
Using getProject
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getProject(args: GetProjectArgs, opts?: InvokeOptions): Promise<GetProjectResult>
function getProjectOutput(args: GetProjectOutputArgs, opts?: InvokeOptions): Output<GetProjectResult>
def get_project(project_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetProjectResult
def get_project_output(project_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetProjectResult]
func LookupProject(ctx *Context, args *LookupProjectArgs, opts ...InvokeOption) (*LookupProjectResult, error)
func LookupProjectOutput(ctx *Context, args *LookupProjectOutputArgs, opts ...InvokeOption) LookupProjectResultOutput
> Note: This function is named LookupProject
in the Go SDK.
public static class GetProject
{
public static Task<GetProjectResult> InvokeAsync(GetProjectArgs args, InvokeOptions? opts = null)
public static Output<GetProjectResult> Invoke(GetProjectInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetProjectResult> getProject(GetProjectArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: gcp:organizations/getProject:getProject
arguments:
# arguments dictionary
The following arguments are supported:
- Project
Id string - The project ID. If it is not provided, the provider project is used.
- Project
Id string - The project ID. If it is not provided, the provider project is used.
- project
Id String - The project ID. If it is not provided, the provider project is used.
- project
Id string - The project ID. If it is not provided, the provider project is used.
- project_
id str - The project ID. If it is not provided, the provider project is used.
- project
Id String - The project ID. If it is not provided, the provider project is used.
getProject Result
The following output properties are available:
- Auto
Create boolNetwork - Billing
Account string - Effective
Labels Dictionary<string, string> - Folder
Id string - Id string
- The provider-assigned unique ID for this managed resource.
- Labels Dictionary<string, string>
- Name string
- Number string
- The numeric identifier of the project.
- Org
Id string - Pulumi
Labels Dictionary<string, string> - Skip
Delete bool - Project
Id string
- Auto
Create boolNetwork - Billing
Account string - Effective
Labels map[string]string - Folder
Id string - Id string
- The provider-assigned unique ID for this managed resource.
- Labels map[string]string
- Name string
- Number string
- The numeric identifier of the project.
- Org
Id string - Pulumi
Labels map[string]string - Skip
Delete bool - Project
Id string
- auto
Create BooleanNetwork - billing
Account String - effective
Labels Map<String,String> - folder
Id String - id String
- The provider-assigned unique ID for this managed resource.
- labels Map<String,String>
- name String
- number String
- The numeric identifier of the project.
- org
Id String - pulumi
Labels Map<String,String> - skip
Delete Boolean - project
Id String
- auto
Create booleanNetwork - billing
Account string - effective
Labels {[key: string]: string} - folder
Id string - id string
- The provider-assigned unique ID for this managed resource.
- labels {[key: string]: string}
- name string
- number string
- The numeric identifier of the project.
- org
Id string - pulumi
Labels {[key: string]: string} - skip
Delete boolean - project
Id string
- auto_
create_ boolnetwork - billing_
account str - effective_
labels Mapping[str, str] - folder_
id str - id str
- The provider-assigned unique ID for this managed resource.
- labels Mapping[str, str]
- name str
- number str
- The numeric identifier of the project.
- org_
id str - pulumi_
labels Mapping[str, str] - skip_
delete bool - project_
id str
- auto
Create BooleanNetwork - billing
Account String - effective
Labels Map<String> - folder
Id String - id String
- The provider-assigned unique ID for this managed resource.
- labels Map<String>
- name String
- number String
- The numeric identifier of the project.
- org
Id String - pulumi
Labels Map<String> - skip
Delete Boolean - project
Id String
Package Details
- Repository
- Google Cloud (GCP) Classic pulumi/pulumi-gcp
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
google-beta
Terraform Provider.