Skip to content
This repository has been archived by the owner on Oct 5, 2022. It is now read-only.

Commit

Permalink
update azurerm provider to version with fix for #47 (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
sdebruyn committed May 15, 2020
1 parent 19d11b6 commit dfc7e24
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
9 changes: 2 additions & 7 deletions main.tf
@@ -1,20 +1,15 @@
terraform {
required_version = "~> 0.12"
required_providers {
azurerm = "~> 2.9.0"
azuread = "~> 0.8.0"
azurerm = ">= 2.10.0"
azuread = ">= 0.8.0"
}
}

provider "azurerm" {
version = "~> 2.9.0"
features {}
}

provider "azuread" {
version = "~> 0.8.0"
}

data "azurerm_client_config" "current" {
}

Expand Down
2 changes: 0 additions & 2 deletions sample_data.tf
Expand Up @@ -123,7 +123,6 @@ resource "azurerm_data_factory_trigger_schedule" "copy_sample_data_trigger" {
provisioner "local-exec" {
command = "${path.module}/files/sample_data/set_df_trigger.sh"
interpreter = ["sh"]
on_failure = continue

environment = {
TRIGGER_ID = self.id
Expand All @@ -135,7 +134,6 @@ resource "azurerm_data_factory_trigger_schedule" "copy_sample_data_trigger" {
command = "${path.module}/files/sample_data/set_df_trigger.sh"
interpreter = ["sh"]
when = destroy
on_failure = continue

environment = {
TRIGGER_ID = self.id
Expand Down

0 comments on commit dfc7e24

Please sign in to comment.