Skip to content

Commit

Permalink
adding test
Browse files Browse the repository at this point in the history
  • Loading branch information
stobias123 committed Jan 6, 2020
1 parent 88c90b6 commit 1e61e8b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions test/main.tf
Expand Up @@ -7,4 +7,16 @@ provider "orion" {

resource "orion_ip_address" "test" {
vlan = 148
}

data "orion_subnet" "test" {
vlan = 148
}

output "orion_ip" {
value = orion_ip_address.test.address
}

output "orion_subnet" {
value = data.orion_subnet.test.address
}

0 comments on commit 1e61e8b

Please sign in to comment.