Skip to content

Commit 7a091ae

Browse files
authored
Merge pull request #26 from InputObject2/feature/remove-providers
feat(module): Remove empty terraform providers
2 parents 7756d10 + 33956ef commit 7a091ae

File tree

3 files changed

+0
-38
lines changed

3 files changed

+0
-38
lines changed

README.md

-4
Original file line numberDiff line numberDiff line change
@@ -132,12 +132,8 @@ No modules.
132132
| <a name="input_public_ssh_key"></a> [public\_ssh\_key](#input\_public\_ssh\_key) | Public SSH key for accessing the nodes | `string` | n/a | yes |
133133
| <a name="input_start_delay"></a> [start\_delay](#input\_start\_delay) | The amount of time the cluster virtual machines will wait on XCP-NG host startup | `number` | `0` | no |
134134
| <a name="input_tags"></a> [tags](#input\_tags) | A list of key+value pairs to apply to the deployment | `list(string)` | `[]` | no |
135-
| <a name="input_xoa_api_url"></a> [xoa\_api\_url](#input\_xoa\_api\_url) | URL for Xen Orchestra API (can be set via XOA\_API\_URL environment variable) | `string` | n/a | yes |
136-
| <a name="input_xoa_ignore_ssl"></a> [xoa\_ignore\_ssl](#input\_xoa\_ignore\_ssl) | Ignore SSL verification for Xen Orchestra API (can be set via XOA\_IGNORE\_SSL environment variable) | `bool` | `null` | no |
137135
| <a name="input_xoa_network_name"></a> [xoa\_network\_name](#input\_xoa\_network\_name) | Default network for virtual machines as seen in Xen Orchestra | `string` | `null` | no |
138-
| <a name="input_xoa_password"></a> [xoa\_password](#input\_xoa\_password) | Password for Xen Orchestra API (can be set via XOA\_PASSWORD environment variable) | `string` | `null` | no |
139136
| <a name="input_xoa_pool_name"></a> [xoa\_pool\_name](#input\_xoa\_pool\_name) | Default name of the XCP-ng pool as seen in Xen Orchestra | `string` | `null` | no |
140-
| <a name="input_xoa_username"></a> [xoa\_username](#input\_xoa\_username) | Username for Xen Orchestra API (can be set via XOA\_USERNAME environment variable) | `string` | `null` | no |
141137

142138
## Outputs
143139

variables.tf

-22
Original file line numberDiff line numberDiff line change
@@ -123,11 +123,6 @@ variable "master_tags" {
123123
}
124124

125125
# Xen Orchestra Settings
126-
variable "xoa_api_url" {
127-
description = "URL for Xen Orchestra API (can be set via XOA_API_URL environment variable)"
128-
type = string
129-
}
130-
131126
variable "xoa_pool_name" {
132127
description = "Default name of the XCP-ng pool as seen in Xen Orchestra"
133128
type = string
@@ -152,23 +147,6 @@ variable "node_xoa_pool_name" {
152147
default = null
153148
}
154149

155-
variable "xoa_username" {
156-
description = "Username for Xen Orchestra API (can be set via XOA_USERNAME environment variable)"
157-
type = string
158-
default = null
159-
}
160-
161-
variable "xoa_password" {
162-
description = "Password for Xen Orchestra API (can be set via XOA_PASSWORD environment variable)"
163-
type = string
164-
default = null
165-
}
166-
167-
variable "xoa_ignore_ssl" {
168-
description = "Ignore SSL verification for Xen Orchestra API (can be set via XOA_IGNORE_SSL environment variable)"
169-
type = bool
170-
default = null
171-
}
172150

173151
variable "start_delay" {
174152
description = "The amount of time the cluster virtual machines will wait on XCP-NG host startup"

xen_data.tf

-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,3 @@
1-
provider "xenorchestra" {
2-
# Configuration options
3-
# Must be ws or wss
4-
url = var.xoa_api_url # Or set XOA_URL environment variable
5-
username = var.xoa_username # Or set XOA_USER environment variable
6-
password = var.xoa_password # Or set XOA_PASSWORD environment variable
7-
insecure = var.xoa_ignore_ssl # Or set XOA_INSECURE environment variable to any value
8-
}
9-
10-
provider "macaddress" {}
11-
12-
131
# docs : https://github.com/terra-farm/terraform-provider-xenorchestra/blob/master/docs/resources/vm.md
142

153
locals {

0 commit comments

Comments
 (0)