You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,8 +13,8 @@
13
13
*[Submodules](./modules)
14
14
*[fscloud](./modules/fscloud)
15
15
*[Examples](./examples)
16
-
*[Basic example](./examples/basic)
17
-
*[Complete example with autoscaling, BYOK encryption, service credentials creation, index creation and updates to cluster-wide settings](./examples/complete)
16
+
*[Basic example with index creation and updates to cluster-wide settings](./examples/basic)
17
+
*[Complete example with autoscaling, BYOK encryption and service credentials creation](./examples/complete)
18
18
*[Financial Services Cloud profile example with autoscaling enabled](./examples/fscloud)
Copy file name to clipboardExpand all lines: examples/basic/version.tf
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -6,5 +6,16 @@ terraform {
6
6
source ="IBM-Cloud/ibm"
7
7
version ="1.65.0"
8
8
}
9
+
# The elasticsearch provider is not actually required by the module itself, just this example, so OK to use ">=" here instead of locking into a version
10
+
elasticsearch={
11
+
source ="phillbaker/elasticsearch"
12
+
version =">= 2.0.7"
13
+
}
14
+
15
+
# The time provider is not actually required by the module itself, just this example, so OK to use ">=" here instead of locking into a version
Copy file name to clipboardExpand all lines: examples/complete/version.tf
-10Lines changed: 0 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -6,15 +6,5 @@ terraform {
6
6
source ="IBM-Cloud/ibm"
7
7
version =">=1.65.0, <2.0.0"
8
8
}
9
-
# The elasticsearch provider is not actually required by the module itself, just this example, so OK to use ">=" here instead of locking into a version
10
-
elasticsearch={
11
-
source ="phillbaker/elasticsearch"
12
-
version =">= 2.0.7"
13
-
}
14
-
# The time provider is not actually required by the module itself, just this example, so OK to use ">=" here instead of locking into a version
0 commit comments