azurerm_custom_provider

Manages an Azure Custom Provider.

Example Usage

resource "azurerm_resource_group" "example" {
  name     = "example-resources"
  location = "West Europe"
}

resource "azurerm_custom_provider" "example" {
  name                = "example_provider"
  location            = azurerm_resource_group.example.location
  resource_group_name = azurerm_resource_group.example.name

  resource_type {
    name     = "dEf1"
    endpoint = "https://testendpoint.com/"
  }
}

Argument Reference

The following arguments are supported:


A resource_type block supports the following:


A action block supports the following:


A validation block supports the following:

Attributes Reference

In addition to the Arguments listed above - the following Attributes are exported:

Timeouts

The timeouts block allows you to specify timeouts for certain actions:

Import

Custom Provider can be imported using the resource id, e.g.

terraform import azurerm_custom_provider.example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/example/providers/Microsoft.CustomProviders/resourceProviders/example