Skip to content

Commit

Permalink
Merge pull request #13 from itsksaurabh/provider/version
Browse files Browse the repository at this point in the history
Add version constraints
  • Loading branch information
itsksaurabh authored Apr 29, 2020
2 parents 1747818 + bfad636 commit 6be8378
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
7 changes: 6 additions & 1 deletion provider.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Define Infrastructure provider
// Define Infrastructure providers
provider "digitalocean" {
token = "${var.do_token}"
version = "~> v1.14.0"
}

provider "template"{
version = "~> 2.1"
}
3 changes: 3 additions & 0 deletions version.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
terraform {
required_version = "~> v0.11.13"
}

0 comments on commit 6be8378

Please sign in to comment.