Skip to content

Commit c5d4fa9

Browse files
module is published on terraform now, it can be sourced as armagankaratosun/awesome-modules/vsphere//
1 parent 06dde01 commit c5d4fa9

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

Diff for: README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,15 @@ Now, you can utilize the sub-modules to provision virtual machines and create vi
3434

3535
```
3636
module "vsphere_vm" {
37-
source = "git::https://github.com/armagankaratosun/terraform-vsphere-awesome-modules.git//modules/virtual-machine"
37+
source = "armagankaratosun/awesome-modules/vsphere//modules/virtual-machine"
38+
version = "0.1.0"
3839
```
3940
or
4041

4142
```
4243
module "snapshot" {
43-
source = "git::https://github.com/armagankaratosun/terraform-vsphere-awesome-modules.git//modules/virtual-machine-snapshot"
44+
source = "armagankaratosun/awesome-modules/vsphere//modules/virtual-machine-snapshot"
45+
version = "0.1.0"
4446
```
4547

4648
Please take a look at each sub-module's README.md file for more details and variables. Additionally, example .tf files for each sub-module can be found under the examples directory.

Diff for: modules/virtual-machine-snapshot/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ then, you can simply create a main.tf file where you can define the snapshots;
2727

2828
```
2929
module "snapshot" {
30-
source = "git::https://github.com/armagankaratosun/terraform-vsphere-awesome-modules.git//modules/virtual-machine-snapshot"
30+
source = "armagankaratosun/awesome-modules/vsphere//modules/virtual-machine-snapshot"
31+
version = "0.1.0"
3132
3233
vsphere_datacenter = "<your-datacenter-name>" # Datacenter, by default.
3334
vm_name = ["vm-to-be-snapshotted-01","vm-to-be-snapshotted-02"]

Diff for: modules/virtual-machine/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ then, you can simply create a main.tf file where you can define Virtual Machine(
2727

2828
```
2929
module "vsphere_vm" {
30-
source = "git::https://github.com/armagankaratosun/terraform-vsphere-awesome-modules.git//modules/virtual-machine"
30+
source = "armagankaratosun/awesome-modules/vsphere//modules/virtual-machine"
31+
version = "0.1.0"
3132
3233
vsphere_datastore = "<your-datastore>"
3334
vsphere_datacenter = "<your-datacenter>"

0 commit comments

Comments
 (0)