Azure Automation Variable Bool

This page shows how to write Terraform and Azure Resource Manager for Automation Variable Bool and write them securely.

azurerm_automation_variable_bool (Terraform)

The Variable Bool in Automation can be configured in Terraform with the resource name azurerm_automation_variable_bool. The following sections describe 1 example of how to use the resource and its parameters.

Example Usage from GitHub

main.tf#L7
resource "azurerm_automation_variable_bool" "this" {
  automation_account_name = var.automation_account_name
  description             = var.description
  encrypted               = var.encrypted
  name                    = var.name
  resource_group_name     = var.resource_group_name

Review your Terraform file for Azure best practices

Shisho Cloud, our free checker to make sure your Terraform configuration follows best practices, is available (beta).

Parameters

Explanation in Terraform Registry

Manages a boolean variable in Azure Automation

Microsoft.Automation/automationAccounts/variables (Azure Resource Manager)

The automationAccounts/variables in Microsoft.Automation can be configured in Azure Resource Manager with the resource name Microsoft.Automation/automationAccounts/variables. The following sections describe how to use the resource and its parameters.

Example Usage from GitHub

An example could not be found in GitHub.

Frequently asked questions

What is Azure Automation Variable Bool?

Azure Automation Variable Bool is a resource for Automation of Microsoft Azure. Settings can be wrote in Terraform.

Where can I find the example code for the Azure Automation Variable Bool?

For Terraform, the kevinhead/azurerm source code example is useful. See the Terraform Example section for further details.