Skip to content
This repository was archived by the owner on Jul 3, 2023. It is now read-only.

Commit 68b49d8

Browse files
Versions.tf at root module level
1 parent 8336506 commit 68b49d8

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

versions.tf

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
#####################################################
2+
# activity tracker as a service
3+
# Copyright 2020 IBM
4+
#####################################################
5+
6+
/***************************************************
7+
NOTE: To source a particular version of IBM terraform
8+
provider version, configure the parameter `version`.
9+
10+
terraform {
11+
required_version = ">=0.13"
12+
required_providers {
13+
ibm = {
14+
source = "IBM-Cloud/ibm"
15+
version = "1.20.0"
16+
}
17+
}
18+
}
19+
If we dont configure the version parameter,
20+
it fetches latest provider version.
21+
****************************************************/
22+
23+
terraform {
24+
required_version = ">=0.13"
25+
required_providers {
26+
ibm = {
27+
source = "IBM-Cloud/ibm"
28+
}
29+
}
30+
}

0 commit comments

Comments
 (0)