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
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Provider(name: string, args?: ProviderArgs, opts?: CustomResourceOptions);@overload
def Provider(resource_name: str,
             args: Optional[ProviderArgs] = None,
             opts: Optional[ResourceOptions] = None)
@overload
def Provider(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             app_auth: Optional[ProviderAppAuthArgs] = None,
             base_url: Optional[str] = None,
             insecure: Optional[bool] = None,
             max_retries: Optional[int] = None,
             organization: Optional[str] = None,
             owner: Optional[str] = None,
             parallel_requests: Optional[bool] = None,
             read_delay_ms: Optional[int] = None,
             retry_delay_ms: Optional[int] = None,
             retryable_errors: Optional[Sequence[int]] = None,
             token: Optional[str] = None,
             write_delay_ms: Optional[int] = 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.
Parameters
- 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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Provider resource accepts the following input properties:
- AppAuth ProviderApp Auth 
- The GitHub App credentials used to connect to GitHub. Conflicts with token. Anonymous mode is enabled if bothtokenandapp_authare not set.
- BaseUrl string
- The GitHub Base API URL
It can also be sourced from the following environment variable: GITHUB_BASE_URL
- Insecure bool
- Enable insecuremode for testing purposes
- MaxRetries int
- Number of times to retry a request after receiving an error status codeDefaults to 3
- Organization string
- The GitHub organization name to manage. Use this field instead of ownerwhen managing organization accounts.
- Owner string
- The GitHub owner name to manage. Use this field instead of organizationwhen managing individual accounts.
- ParallelRequests 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
- ReadDelay intMs 
- Amount of time in milliseconds to sleep in between non-write requests to GitHub API. Defaults to 0ms if not set.
- RetryDelay intMs 
- Amount of time in milliseconds to sleep in between requests to GitHub API after an error response. Defaults to 1000ms or 1s if not set, the max_retries must be set to greater than zero.
- RetryableErrors List<int>
- Allow the provider to retry after receiving an error status code, the max_retries should be set for this to workDefaults to [500, 502, 503, 504]
- Token string
- The OAuth token used to connect to GitHub. Anonymous mode is enabled if both tokenandapp_authare not set. It can also be sourced from the following environment variable:GITHUB_TOKEN
- WriteDelay intMs 
- Amount of time in milliseconds to sleep in between writes to GitHub API. Defaults to 1000ms or 1s if not set.
- AppAuth ProviderApp Auth Args 
- The GitHub App credentials used to connect to GitHub. Conflicts with token. Anonymous mode is enabled if bothtokenandapp_authare not set.
- BaseUrl string
- The GitHub Base API URL
It can also be sourced from the following environment variable: GITHUB_BASE_URL
- Insecure bool
- Enable insecuremode for testing purposes
- MaxRetries int
- Number of times to retry a request after receiving an error status codeDefaults to 3
- Organization string
- The GitHub organization name to manage. Use this field instead of ownerwhen managing organization accounts.
- Owner string
- The GitHub owner name to manage. Use this field instead of organizationwhen managing individual accounts.
- ParallelRequests 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
- ReadDelay intMs 
- Amount of time in milliseconds to sleep in between non-write requests to GitHub API. Defaults to 0ms if not set.
- RetryDelay intMs 
- Amount of time in milliseconds to sleep in between requests to GitHub API after an error response. Defaults to 1000ms or 1s if not set, the max_retries must be set to greater than zero.
- RetryableErrors []int
- Allow the provider to retry after receiving an error status code, the max_retries should be set for this to workDefaults to [500, 502, 503, 504]
- Token string
- The OAuth token used to connect to GitHub. Anonymous mode is enabled if both tokenandapp_authare not set. It can also be sourced from the following environment variable:GITHUB_TOKEN
- WriteDelay intMs 
- Amount of time in milliseconds to sleep in between writes to GitHub API. Defaults to 1000ms or 1s if not set.
- appAuth ProviderApp Auth 
- The GitHub App credentials used to connect to GitHub. Conflicts with token. Anonymous mode is enabled if bothtokenandapp_authare not set.
- baseUrl String
- The GitHub Base API URL
It can also be sourced from the following environment variable: GITHUB_BASE_URL
- insecure Boolean
- Enable insecuremode for testing purposes
- maxRetries Integer
- Number of times to retry a request after receiving an error status codeDefaults to 3
- organization String
- The GitHub organization name to manage. Use this field instead of ownerwhen managing organization accounts.
- owner String
- The GitHub owner name to manage. Use this field instead of organizationwhen managing individual accounts.
- parallelRequests 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
- readDelay IntegerMs 
- Amount of time in milliseconds to sleep in between non-write requests to GitHub API. Defaults to 0ms if not set.
- retryDelay IntegerMs 
- Amount of time in milliseconds to sleep in between requests to GitHub API after an error response. Defaults to 1000ms or 1s if not set, the max_retries must be set to greater than zero.
- retryableErrors List<Integer>
- Allow the provider to retry after receiving an error status code, the max_retries should be set for this to workDefaults to [500, 502, 503, 504]
- token String
- The OAuth token used to connect to GitHub. Anonymous mode is enabled if both tokenandapp_authare not set. It can also be sourced from the following environment variable:GITHUB_TOKEN
- writeDelay IntegerMs 
- Amount of time in milliseconds to sleep in between writes to GitHub API. Defaults to 1000ms or 1s if not set.
- appAuth ProviderApp Auth 
- The GitHub App credentials used to connect to GitHub. Conflicts with token. Anonymous mode is enabled if bothtokenandapp_authare not set.
- baseUrl string
- The GitHub Base API URL
It can also be sourced from the following environment variable: GITHUB_BASE_URL
- insecure boolean
- Enable insecuremode for testing purposes
- maxRetries number
- Number of times to retry a request after receiving an error status codeDefaults to 3
- organization string
- The GitHub organization name to manage. Use this field instead of ownerwhen managing organization accounts.
- owner string
- The GitHub owner name to manage. Use this field instead of organizationwhen managing individual accounts.
- parallelRequests 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
- readDelay numberMs 
- Amount of time in milliseconds to sleep in between non-write requests to GitHub API. Defaults to 0ms if not set.
- retryDelay numberMs 
- Amount of time in milliseconds to sleep in between requests to GitHub API after an error response. Defaults to 1000ms or 1s if not set, the max_retries must be set to greater than zero.
- retryableErrors number[]
- Allow the provider to retry after receiving an error status code, the max_retries should be set for this to workDefaults to [500, 502, 503, 504]
- token string
- The OAuth token used to connect to GitHub. Anonymous mode is enabled if both tokenandapp_authare not set. It can also be sourced from the following environment variable:GITHUB_TOKEN
- writeDelay 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 bothtokenandapp_authare 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 insecuremode for testing purposes
- max_retries int
- Number of times to retry a request after receiving an error status codeDefaults to 3
- organization str
- The GitHub organization name to manage. Use this field instead of ownerwhen managing organization accounts.
- owner str
- The GitHub owner name to manage. Use this field instead of organizationwhen 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.
- retry_delay_ intms 
- Amount of time in milliseconds to sleep in between requests to GitHub API after an error response. Defaults to 1000ms or 1s if not set, the max_retries must be set to greater than zero.
- retryable_errors Sequence[int]
- Allow the provider to retry after receiving an error status code, the max_retries should be set for this to workDefaults to [500, 502, 503, 504]
- token str
- The OAuth token used to connect to GitHub. Anonymous mode is enabled if both tokenandapp_authare not set. It can also be sourced from the following environment variable:GITHUB_TOKEN
- write_delay_ intms 
- Amount of time in milliseconds to sleep in between writes to GitHub API. Defaults to 1000ms or 1s if not set.
- appAuth Property Map
- The GitHub App credentials used to connect to GitHub. Conflicts with token. Anonymous mode is enabled if bothtokenandapp_authare not set.
- baseUrl String
- The GitHub Base API URL
It can also be sourced from the following environment variable: GITHUB_BASE_URL
- insecure Boolean
- Enable insecuremode for testing purposes
- maxRetries Number
- Number of times to retry a request after receiving an error status codeDefaults to 3
- organization String
- The GitHub organization name to manage. Use this field instead of ownerwhen managing organization accounts.
- owner String
- The GitHub owner name to manage. Use this field instead of organizationwhen managing individual accounts.
- parallelRequests 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
- readDelay NumberMs 
- Amount of time in milliseconds to sleep in between non-write requests to GitHub API. Defaults to 0ms if not set.
- retryDelay NumberMs 
- Amount of time in milliseconds to sleep in between requests to GitHub API after an error response. Defaults to 1000ms or 1s if not set, the max_retries must be set to greater than zero.
- retryableErrors List<Number>
- Allow the provider to retry after receiving an error status code, the max_retries should be set for this to workDefaults to [500, 502, 503, 504]
- token String
- The OAuth token used to connect to GitHub. Anonymous mode is enabled if both tokenandapp_authare not set. It can also be sourced from the following environment variable:GITHUB_TOKEN
- writeDelay 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
- The GitHub App ID.
- InstallationId string
- The GitHub App installation instance ID.
- PemFile string
- The GitHub App PEM file contents.
- Id string
- The GitHub App ID.
- InstallationId string
- The GitHub App installation instance ID.
- PemFile string
- The GitHub App PEM file contents.
- id String
- The GitHub App ID.
- installationId String
- The GitHub App installation instance ID.
- pemFile String
- The GitHub App PEM file contents.
- id string
- The GitHub App ID.
- installationId string
- The GitHub App installation instance ID.
- pemFile string
- The GitHub App PEM file contents.
- id str
- The GitHub App ID.
- installation_id str
- The GitHub App installation instance ID.
- pem_file str
- The GitHub App PEM file contents.
- id String
- The GitHub App ID.
- installationId String
- The GitHub App installation instance ID.
- pemFile String
- The GitHub App PEM file contents.
Package Details
- Repository
- GitHub pulumi/pulumi-github
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the githubTerraform Provider.