Azure Automation Variable Datetime

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

azurerm_automation_variable_datetime (Terraform)

The Variable Datetime in Automation can be configured in Terraform with the resource name azurerm_automation_variable_datetime. 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_datetime" "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 DateTime 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 Datetime?

Azure Automation Variable Datetime 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 Datetime?

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