501c05d0f7
IPv6 support added. We support 1 IPv6 address per interface. It seems like the vSphere SDK supports more than one, since it's provided as a list. I can change it to support more than one address. I decided to stick with one for now since that's how the configuration parameters had been set up by other developers. The global gateway configuration option has been removed. Instead the user should specify a gateway on NIC level (ipv4_gateway and ipv6_gateway). For now, the global gateway will be used as a fallback for every NICs ipv4_gateway. The global gateway configuration option has been marked as deprecated. |
||
---|---|---|
.. | ||
README.md | ||
config.go | ||
provider.go | ||
provider_test.go | ||
resource_vsphere_file.go | ||
resource_vsphere_file_test.go | ||
resource_vsphere_folder.go | ||
resource_vsphere_folder_test.go | ||
resource_vsphere_virtual_machine.go | ||
resource_vsphere_virtual_machine_test.go |
README.md
Terraform vSphere Provider Dev Docs
This document is in place for developer documentation. User documentation is located HERE on Terraform's website.
Thank-you @tkak and Rakuten, Inc. for there original contribution of the source base used for this provider!
Introductory Documentation
Both README.md and BUILDING.md should be read first!
Base API Dependency ~ govmomi
This provider utilizes govmomi Go Library for communicating to VMware vSphere APIs (ESXi and/or vCenter). Because of the dependency this provider is compatible with VMware systems that are supported by govmomi. Much thanks to the dev team that maintains govmomi, and even more thanks to there guidance with the development of this provider. We have had many issues answered by the govomi team!
vSphere CLI ~ govc
One of the great tools that govmomi contains is govc. It is a command line tool for using the govmomi API. Not only is it a tool to use, but also it's source base is a great resource of examples on how to exercise the API.
Required privileges for running Terraform as non-administrative user
Most of the organizations are concerned about administrative privileges. In order to use Terraform provider as non priviledged user, we can define a new Role within a vCenter and assign it appropriate privileges: Navigate to Administration -> Access Control -> Roles Click on "+" icon (Create role action), give it appropraite name and select following privileges:
-
Datastore
- Allocate space
- Browse datastore
- Low level file operations
- Remove file
- Update virtual machine files
- Update virtual machine metadata
-
Folder (all)
- Create folder
- Delete folder
- Move folder
- Rename folder
-
Network
- Assign network
-
Resource
- Apply recommendation
- Assign virtual machine to resource pool
-
Virtual Machine
- Configuration (all) - for now
- Guest Operations (all) - for now
- Interaction (all)
- Inventory (all)
- Provisioning (all)
These settings were tested with vSphere 6.0 and vSphere 5.5. For additional information on roles and permissions, please refer to official VMware documentation.
This section is a work in progress and additional contributions are more than welcome.