Manages an App Service source control token.
resource "azurerm_app_service_source_control_token" "example" {
type = "GitHub"
token = "7e57735e77e577e57"
}
The following arguments are supported:
type
- (Required) The source control type. Possible values are BitBucket
, Dropbox
, GitHub
and OneDrive
.
token
- (Required) The OAuth access token.
token_secret
- (Optional) The OAuth access token secret.
The timeouts
block allows you to specify timeouts for certain actions:
create
- (Defaults to 30 minutes) Used when creating the App Service Source Control Token.update
- (Defaults to 30 minutes) Used when updating the App Service Source Control Token.read
- (Defaults to 5 minutes) Used when retrieving the App Service Source Control Token.delete
- (Defaults to 30 minutes) Used when deleting the App Service Source Control Token.App Service Source Control Token's can be imported using the type
, e.g.
terraform import azurerm_app_service_source_control_token.example {type}