OrganizationProject

This resource allows you to create and manage projects for GitHub organization.

Example Usage

using Pulumi;
using Github = Pulumi.Github;

class MyStack : Stack
{
    public MyStack()
    {
        var project = new Github.OrganizationProject("project", new Github.OrganizationProjectArgs
        {
            Body = "This is a organization project.",
        });
    }

}

Coming soon!

import pulumi
import pulumi_github as github

project = github.OrganizationProject("project", body="This is a organization project.")
import * as pulumi from "@pulumi/pulumi";
import * as github from "@pulumi/github";

const project = new github.OrganizationProject("project", {
    body: "This is a organization project.",
});

Create a OrganizationProject Resource

def OrganizationProject(resource_name, opts=None, body=None, name=None, __props__=None);
name string
The unique name of the resource.
args OrganizationProjectArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name str
The unique name of the resource.
opts ResourceOptions
A bag of options that control this resource's behavior.
ctx Context
Context object for the current deployment.
name string
The unique name of the resource.
args OrganizationProjectArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args OrganizationProjectArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.

OrganizationProject Resource Properties

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

Inputs

The OrganizationProject resource accepts the following input properties:

Body string

The body of the project.

Name string

The name of the project.

Body string

The body of the project.

Name string

The name of the project.

body string

The body of the project.

name string

The name of the project.

body str

The body of the project.

name str

The name of the project.

Outputs

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

Etag string
Id string
The provider-assigned unique ID for this managed resource.
Url string

URL of the project

Etag string
Id string
The provider-assigned unique ID for this managed resource.
Url string

URL of the project

etag string
id string
The provider-assigned unique ID for this managed resource.
url string

URL of the project

etag str
id str
The provider-assigned unique ID for this managed resource.
url str

URL of the project

Look up an Existing OrganizationProject Resource

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

static get(resource_name, id, opts=None, body=None, etag=None, name=None, url=None, __props__=None);
func GetOrganizationProject(ctx *Context, name string, id IDInput, state *OrganizationProjectState, opts ...ResourceOption) (*OrganizationProject, error)
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.

The following state arguments are supported:

Body string

The body of the project.

Etag string
Name string

The name of the project.

Url string

URL of the project

Body string

The body of the project.

Etag string
Name string

The name of the project.

Url string

URL of the project

body string

The body of the project.

etag string
name string

The name of the project.

url string

URL of the project

body str

The body of the project.

etag str
name str

The name of the project.

url str

URL of the project

Package Details

Repository
https://github.com/pulumi/pulumi-github
License
Apache-2.0
Notes
This Pulumi package is based on the github Terraform Provider.