fix for test

pull/72/head
Stephen Kirby 2 years ago
parent 1bca09aa42
commit 4ba359664c

@ -13,7 +13,7 @@ describe("aws-region", async () => {
it("default output", async () => {
const state = await runTerraformApply(import.meta.dir, {});
expect(state.outputs.value.value).toBe("us-east-1");
expect(state.outputs.value.value).toBe("");
});
it("customized default", async () => {

@ -22,6 +22,7 @@ variable "description" {
}
variable "default" {
default = ""
description = "The default region to use if no region is specified."
type = string
}

@ -21,7 +21,7 @@ variable "description" {
}
variable "default" {
default = ""
default = ""
description = "The default region to use if no region is specified."
type = string
}

Loading…
Cancel
Save