resource "azurerm_template_deployment" "${MyResource}" {
name = "acctesttemplate-01"
resource_group_name = "\${azurerm_resource_group.test.name}"
deployment_mode = "Complete"
template_body = <<DEPLOY
...
DEPLOY
}
azurerm_template_deployment
This code is used to create a deployment of an AzureRM Template. The code defines a named deployment, associated with a resource group called 'test'. The deployment is in the 'Complete' mode, which means it will deploy the template and all its dependencies.
Shortcut: tf_azurerm_template_deployment
0 Comments
Add Comment
Log in to add a comment