aztfmod / terraform-provider-azurecaf

Terraform provider for the Terraform platform engineering for Azure
173 stars 92 forks source link

Fix make test command #110

Closed GlennChia closed 3 years ago

GlennChia commented 3 years ago

Description

Currently when make test is run, the following error is produced:

image

Proposed fix

Add a terraform block in examples/cafrandom.tf (Terraform block retrieved from Terraform Registry aztfmod):

terraform {
  required_providers {
    azurecaf = {
      source  = "aztfmod/azurecaf"
      version = "1.2.4"
    }
  }
}