published on Wednesday, Apr 8, 2026 by Pydantic
published on Wednesday, Apr 8, 2026 by Pydantic
Manages a Logfire project.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as logfire from "@pydantic/pulumi-logfire";
const example = new logfire.Project("example", {description: "Managed by Pulumi"});
import pulumi
import pulumi_logfire as logfire
example = logfire.Project("example", description="Managed by Pulumi")
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pydantic/pulumi-logfire/sdk/go/logfire"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := logfire.NewProject(ctx, "example", &logfire.ProjectArgs{
Description: pulumi.String("Managed by Pulumi"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Logfire = Pulumi.Logfire;
return await Deployment.RunAsync(() =>
{
var example = new Logfire.Project("example", new()
{
Description = "Managed by Pulumi",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.logfire.Project;
import com.pulumi.logfire.ProjectArgs;
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 example = new Project("example", ProjectArgs.builder()
.description("Managed by Pulumi")
.build());
}
}
resources:
example:
type: logfire:Project
properties:
description: Managed by Pulumi
Create Project Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Project(name: string, args?: ProjectArgs, opts?: CustomResourceOptions);@overload
def Project(resource_name: str,
args: Optional[ProjectArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Project(resource_name: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
name: Optional[str] = None,
visibility: Optional[str] = None)func NewProject(ctx *Context, name string, args *ProjectArgs, opts ...ResourceOption) (*Project, error)public Project(string name, ProjectArgs? args = null, CustomResourceOptions? opts = null)
public Project(String name, ProjectArgs args)
public Project(String name, ProjectArgs args, CustomResourceOptions options)
type: logfire:Project
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ProjectArgs
- 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 ProjectArgs
- 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 ProjectArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ProjectArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ProjectArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var projectResource = new Logfire.Index.Project("projectResource", new()
{
Description = "string",
Name = "string",
Visibility = "string",
});
example, err := logfire.NewProject(ctx, "projectResource", &logfire.ProjectArgs{
Description: pulumi.String("string"),
Name: pulumi.String("string"),
Visibility: pulumi.String("string"),
})
var projectResource = new Project("projectResource", ProjectArgs.builder()
.description("string")
.name("string")
.visibility("string")
.build());
project_resource = logfire.Project("projectResource",
description="string",
name="string",
visibility="string")
const projectResource = new logfire.Project("projectResource", {
description: "string",
name: "string",
visibility: "string",
});
type: logfire:Project
properties:
description: string
name: string
visibility: string
Project Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Project resource accepts the following input properties:
- Description string
- Project description.
- Name string
- Project name/slug. Must be unique within the organization.
- Visibility string
- Project visibility (
publicorprivate).
- Description string
- Project description.
- Name string
- Project name/slug. Must be unique within the organization.
- Visibility string
- Project visibility (
publicorprivate).
- description String
- Project description.
- name String
- Project name/slug. Must be unique within the organization.
- visibility String
- Project visibility (
publicorprivate).
- description string
- Project description.
- name string
- Project name/slug. Must be unique within the organization.
- visibility string
- Project visibility (
publicorprivate).
- description str
- Project description.
- name str
- Project name/slug. Must be unique within the organization.
- visibility str
- Project visibility (
publicorprivate).
- description String
- Project description.
- name String
- Project name/slug. Must be unique within the organization.
- visibility String
- Project visibility (
publicorprivate).
Outputs
All input properties are implicitly available as output properties. Additionally, the Project resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Organization string
- Organization name. Computed from the API and cannot be set.
- Id string
- The provider-assigned unique ID for this managed resource.
- Organization string
- Organization name. Computed from the API and cannot be set.
- id String
- The provider-assigned unique ID for this managed resource.
- organization String
- Organization name. Computed from the API and cannot be set.
- id string
- The provider-assigned unique ID for this managed resource.
- organization string
- Organization name. Computed from the API and cannot be set.
- id str
- The provider-assigned unique ID for this managed resource.
- organization str
- Organization name. Computed from the API and cannot be set.
- id String
- The provider-assigned unique ID for this managed resource.
- organization String
- Organization name. Computed from the API and cannot be set.
Look up Existing Project Resource
Get an existing Project 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?: ProjectState, opts?: CustomResourceOptions): Project@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
name: Optional[str] = None,
organization: Optional[str] = None,
visibility: Optional[str] = None) -> Projectfunc GetProject(ctx *Context, name string, id IDInput, state *ProjectState, opts ...ResourceOption) (*Project, error)public static Project Get(string name, Input<string> id, ProjectState? state, CustomResourceOptions? opts = null)public static Project get(String name, Output<String> id, ProjectState state, CustomResourceOptions options)resources: _: type: logfire:Project get: id: ${id}- 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.
- Description string
- Project description.
- Name string
- Project name/slug. Must be unique within the organization.
- Organization string
- Organization name. Computed from the API and cannot be set.
- Visibility string
- Project visibility (
publicorprivate).
- Description string
- Project description.
- Name string
- Project name/slug. Must be unique within the organization.
- Organization string
- Organization name. Computed from the API and cannot be set.
- Visibility string
- Project visibility (
publicorprivate).
- description String
- Project description.
- name String
- Project name/slug. Must be unique within the organization.
- organization String
- Organization name. Computed from the API and cannot be set.
- visibility String
- Project visibility (
publicorprivate).
- description string
- Project description.
- name string
- Project name/slug. Must be unique within the organization.
- organization string
- Organization name. Computed from the API and cannot be set.
- visibility string
- Project visibility (
publicorprivate).
- description str
- Project description.
- name str
- Project name/slug. Must be unique within the organization.
- organization str
- Organization name. Computed from the API and cannot be set.
- visibility str
- Project visibility (
publicorprivate).
- description String
- Project description.
- name String
- Project name/slug. Must be unique within the organization.
- organization String
- Organization name. Computed from the API and cannot be set.
- visibility String
- Project visibility (
publicorprivate).
Package Details
- Repository
- logfire pydantic/pulumi-logfire
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
logfireTerraform Provider.
published on Wednesday, Apr 8, 2026 by Pydantic
