Manages an Automation Connection with type Azure
.
provider "azurerm" {
features {}
}
resource "azurerm_resource_group" "example" {
name = "resourceGroup-example"
location = "West Europe"
}
data "azurerm_client_config" "example" {}
resource "azurerm_automation_account" "example" {
name = "account-example"
location = azurerm_resource_group.example.location
resource_group_name = azurerm_resource_group.example.name
sku_name = "Basic"
}
resource "azurerm_automation_certificate" "example" {
name = "certificate-example"
resource_group_name = azurerm_resource_group.example.name
automation_account_name = azurerm_automation_account.example.name
base64 = filebase64("certificate.pfx")
}
resource "azurerm_automation_connection_certificate" "example" {
name = "connection-example"
resource_group_name = azurerm_resource_group.example.name
automation_account_name = azurerm_automation_account.example.name
automation_certificate_name = azurerm_automation_certificate.example.name
subscription_id = data.azurerm_client_config.example.subscription_id
}
The following arguments are supported:
name
- (Required) Specifies the name of the Connection. Changing this forces a new resource to be created.
resource_group_name
- (Required) The name of the resource group in which the Connection is created. Changing this forces a new resource to be created.
automation_account_name
- (Required) The name of the automation account in which the Connection is created. Changing this forces a new resource to be created.
automation_certificate_name
- (Required) The name of the automation certificate.
subscription_id
- (Required) The id of subscription where the automation certificate exists.
description
- (Optional) A description for this Connection.
In addition to the Arguments listed above - the following Attributes are exported:
id
- The Automation Connection ID.The timeouts
block allows you to specify timeouts for certain actions:
create
- (Defaults to 30 minutes) Used when creating the Automation Connection.update
- (Defaults to 30 minutes) Used when updating the Automation Connection.read
- (Defaults to 5 minutes) Used when retrieving the Automation Connection.delete
- (Defaults to 30 minutes) Used when deleting the Automation Connection.Automation Connection can be imported using the resource id
, e.g.
terraform import azurerm_automation_connection_certificate.example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Automation/automationAccounts/account1/connections/conn1