fixed a plan test
This commit is contained in:
parent
42b4f18b3f
commit
4483f54987
2 changed files with 4 additions and 5 deletions
|
@ -430,8 +430,7 @@ class TestTerraform:
|
|||
with pytest.raises(TerraformCommandError) as e:
|
||||
tf.plan(plan)
|
||||
assert (
|
||||
e.value.err
|
||||
== """\nError: Missing required argument\n\nThe argument "region" is required, but was not set.\n\n"""
|
||||
"\nError: Unsupported argument\n\n" in e.value.err
|
||||
)
|
||||
|
||||
def test_fmt(self, fmt_test_file):
|
||||
|
|
|
@ -1,16 +1,16 @@
|
|||
variable "ami" {
|
||||
default = "foo"
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "list" {
|
||||
default = []
|
||||
type = "list"
|
||||
type = list
|
||||
}
|
||||
|
||||
variable "map" {
|
||||
default = {}
|
||||
type = "map"
|
||||
type = map
|
||||
}
|
||||
|
||||
resource "aws_instance" "bar" {
|
||||
|
|
Loading…
Reference in a new issue