github.Provider
Explore with Pulumi AI
The provider type for the github package. By default, resources use package-wide configuration
settings, however an explicit Provider
instance may be created and passed during resource
construction to achieve fine-grained programmatic control over provider settings. See the
documentation for more information.
Create Provider Resource
new Provider(name: string, args?: ProviderArgs, opts?: CustomResourceOptions);
@overload
def Provider(resource_name: str,
opts: Optional[ResourceOptions] = None,
app_auth: Optional[ProviderAppAuthArgs] = None,
base_url: Optional[str] = None,
insecure: Optional[bool] = None,
organization: Optional[str] = None,
owner: Optional[str] = None,
parallel_requests: Optional[bool] = None,
read_delay_ms: Optional[int] = None,
token: Optional[str] = None,
write_delay_ms: Optional[int] = None)
@overload
def Provider(resource_name: str,
args: Optional[ProviderArgs] = None,
opts: Optional[ResourceOptions] = None)
func NewProvider(ctx *Context, name string, args *ProviderArgs, opts ...ResourceOption) (*Provider, error)
public Provider(string name, ProviderArgs? args = null, CustomResourceOptions? opts = null)
public Provider(String name, ProviderArgs args)
public Provider(String name, ProviderArgs args, CustomResourceOptions options)
type: pulumi:providers:github
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ProviderArgs
- 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 ProviderArgs
- 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 ProviderArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ProviderArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ProviderArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Provider 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 Provider resource accepts the following input properties:
- App
Auth ProviderApp Auth The GitHub App credentials used to connect to GitHub. Conflicts with
token
. Anonymous mode is enabled if bothtoken
andapp_auth
are not set.- Base
Url string The GitHub Base API URL It can also be sourced from the following environment variable:
GITHUB_BASE_URL
- Insecure bool
Enable
insecure
mode for testing purposes- Organization string
The GitHub organization name to manage. Use this field instead of
owner
when managing organization accounts.Use owner (or GITHUB_OWNER) instead of organization (or GITHUB_ORGANIZATION)
- Owner string
The GitHub owner name to manage. Use this field instead of
organization
when managing individual accounts.- Parallel
Requests bool Allow the provider to make parallel API calls to GitHub. You may want to set it to true when you have a private Github Enterprise without strict rate limits. Although, it is not possible to enable this setting on github.com because we enforce the respect of github.com's best practices to avoid hitting abuse rate limitsDefaults to false if not set
- Read
Delay intMs Amount of time in milliseconds to sleep in between non-write requests to GitHub API. Defaults to 0ms if not set.
- Token string
The OAuth token used to connect to GitHub. Anonymous mode is enabled if both
token
andapp_auth
are not set.- Write
Delay intMs Amount of time in milliseconds to sleep in between writes to GitHub API. Defaults to 1000ms or 1s if not set.
- App
Auth ProviderApp Auth Args The GitHub App credentials used to connect to GitHub. Conflicts with
token
. Anonymous mode is enabled if bothtoken
andapp_auth
are not set.- Base
Url string The GitHub Base API URL It can also be sourced from the following environment variable:
GITHUB_BASE_URL
- Insecure bool
Enable
insecure
mode for testing purposes- Organization string
The GitHub organization name to manage. Use this field instead of
owner
when managing organization accounts.Use owner (or GITHUB_OWNER) instead of organization (or GITHUB_ORGANIZATION)
- Owner string
The GitHub owner name to manage. Use this field instead of
organization
when managing individual accounts.- Parallel
Requests bool Allow the provider to make parallel API calls to GitHub. You may want to set it to true when you have a private Github Enterprise without strict rate limits. Although, it is not possible to enable this setting on github.com because we enforce the respect of github.com's best practices to avoid hitting abuse rate limitsDefaults to false if not set
- Read
Delay intMs Amount of time in milliseconds to sleep in between non-write requests to GitHub API. Defaults to 0ms if not set.
- Token string
The OAuth token used to connect to GitHub. Anonymous mode is enabled if both
token
andapp_auth
are not set.- Write
Delay intMs Amount of time in milliseconds to sleep in between writes to GitHub API. Defaults to 1000ms or 1s if not set.
- app
Auth ProviderApp Auth The GitHub App credentials used to connect to GitHub. Conflicts with
token
. Anonymous mode is enabled if bothtoken
andapp_auth
are not set.- base
Url String The GitHub Base API URL It can also be sourced from the following environment variable:
GITHUB_BASE_URL
- insecure Boolean
Enable
insecure
mode for testing purposes- organization String
The GitHub organization name to manage. Use this field instead of
owner
when managing organization accounts.Use owner (or GITHUB_OWNER) instead of organization (or GITHUB_ORGANIZATION)
- owner String
The GitHub owner name to manage. Use this field instead of
organization
when managing individual accounts.- parallel
Requests Boolean Allow the provider to make parallel API calls to GitHub. You may want to set it to true when you have a private Github Enterprise without strict rate limits. Although, it is not possible to enable this setting on github.com because we enforce the respect of github.com's best practices to avoid hitting abuse rate limitsDefaults to false if not set
- read
Delay IntegerMs Amount of time in milliseconds to sleep in between non-write requests to GitHub API. Defaults to 0ms if not set.
- token String
The OAuth token used to connect to GitHub. Anonymous mode is enabled if both
token
andapp_auth
are not set.- write
Delay IntegerMs Amount of time in milliseconds to sleep in between writes to GitHub API. Defaults to 1000ms or 1s if not set.
- app
Auth ProviderApp Auth The GitHub App credentials used to connect to GitHub. Conflicts with
token
. Anonymous mode is enabled if bothtoken
andapp_auth
are not set.- base
Url string The GitHub Base API URL It can also be sourced from the following environment variable:
GITHUB_BASE_URL
- insecure boolean
Enable
insecure
mode for testing purposes- organization string
The GitHub organization name to manage. Use this field instead of
owner
when managing organization accounts.Use owner (or GITHUB_OWNER) instead of organization (or GITHUB_ORGANIZATION)
- owner string
The GitHub owner name to manage. Use this field instead of
organization
when managing individual accounts.- parallel
Requests boolean Allow the provider to make parallel API calls to GitHub. You may want to set it to true when you have a private Github Enterprise without strict rate limits. Although, it is not possible to enable this setting on github.com because we enforce the respect of github.com's best practices to avoid hitting abuse rate limitsDefaults to false if not set
- read
Delay numberMs Amount of time in milliseconds to sleep in between non-write requests to GitHub API. Defaults to 0ms if not set.
- token string
The OAuth token used to connect to GitHub. Anonymous mode is enabled if both
token
andapp_auth
are not set.- write
Delay numberMs Amount of time in milliseconds to sleep in between writes to GitHub API. Defaults to 1000ms or 1s if not set.
- app_
auth ProviderApp Auth Args The GitHub App credentials used to connect to GitHub. Conflicts with
token
. Anonymous mode is enabled if bothtoken
andapp_auth
are not set.- base_
url str The GitHub Base API URL It can also be sourced from the following environment variable:
GITHUB_BASE_URL
- insecure bool
Enable
insecure
mode for testing purposes- organization str
The GitHub organization name to manage. Use this field instead of
owner
when managing organization accounts.Use owner (or GITHUB_OWNER) instead of organization (or GITHUB_ORGANIZATION)
- owner str
The GitHub owner name to manage. Use this field instead of
organization
when managing individual accounts.- parallel_
requests bool Allow the provider to make parallel API calls to GitHub. You may want to set it to true when you have a private Github Enterprise without strict rate limits. Although, it is not possible to enable this setting on github.com because we enforce the respect of github.com's best practices to avoid hitting abuse rate limitsDefaults to false if not set
- read_
delay_ intms Amount of time in milliseconds to sleep in between non-write requests to GitHub API. Defaults to 0ms if not set.
- token str
The OAuth token used to connect to GitHub. Anonymous mode is enabled if both
token
andapp_auth
are not set.- write_
delay_ intms Amount of time in milliseconds to sleep in between writes to GitHub API. Defaults to 1000ms or 1s if not set.
- app
Auth Property Map The GitHub App credentials used to connect to GitHub. Conflicts with
token
. Anonymous mode is enabled if bothtoken
andapp_auth
are not set.- base
Url String The GitHub Base API URL It can also be sourced from the following environment variable:
GITHUB_BASE_URL
- insecure Boolean
Enable
insecure
mode for testing purposes- organization String
The GitHub organization name to manage. Use this field instead of
owner
when managing organization accounts.Use owner (or GITHUB_OWNER) instead of organization (or GITHUB_ORGANIZATION)
- owner String
The GitHub owner name to manage. Use this field instead of
organization
when managing individual accounts.- parallel
Requests Boolean Allow the provider to make parallel API calls to GitHub. You may want to set it to true when you have a private Github Enterprise without strict rate limits. Although, it is not possible to enable this setting on github.com because we enforce the respect of github.com's best practices to avoid hitting abuse rate limitsDefaults to false if not set
- read
Delay NumberMs Amount of time in milliseconds to sleep in between non-write requests to GitHub API. Defaults to 0ms if not set.
- token String
The OAuth token used to connect to GitHub. Anonymous mode is enabled if both
token
andapp_auth
are not set.- write
Delay NumberMs Amount of time in milliseconds to sleep in between writes to GitHub API. Defaults to 1000ms or 1s if not set.
Outputs
All input properties are implicitly available as output properties. Additionally, the Provider 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.
Supporting Types
ProviderAppAuth, ProviderAppAuthArgs
- Id string
- Installation
Id string - Pem
File string
- Id string
- Installation
Id string - Pem
File string
- id String
- installation
Id String - pem
File String
- id string
- installation
Id string - pem
File string
- id str
- installation_
id str - pem_
file str
- id String
- installation
Id String - pem
File String
Package Details
- Repository
- GitHub pulumi/pulumi-github
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
github
Terraform Provider.