Skip to content

Commit 9bb53e5

Browse files
committed
wipp
1 parent f4ab1ba commit 9bb53e5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+36258
-179
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.DS_Store
2-
examples
2+
examples/.terraform
33
bin
44

55
# Local .terraform directories

examples/main.tf

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
terraform {
2+
required_providers {
3+
iterative = {
4+
versions = ["0.6"]
5+
source = "github.com/iterative/iterative"
6+
}
7+
}
8+
}
9+
10+
provider "iterative" {}
11+
12+
resource "iterative_machine" "machine" {
13+
region = "us-west"
14+
instance_type = "m" //fallback to known instance type
15+
}

0 commit comments

Comments
 (0)