diff --git a/README.md b/README.md
index c898a5a..faa6474 100644
--- a/README.md
+++ b/README.md
@@ -4,17 +4,18 @@
# Table of Contents
-- [Usage](#Usage)
-- [Share the Love](#share-the-love)
-- [Contributing](#contributing)
-- [Bug Reports and Feature Requests](#bug-reports--feature-requests)
-- [Developing](#developing)
-- [Requirements](#requirements)
-- [Providers](#providers)
-- [Modules](#modules)
-- [Resources](#resources)
-- [Inputs](#inputs)
-- [Outputs](#outputs)
+- [Table of Contents](#table-of-contents)
+ - [Usage](#usage)
+ - [Share the Love](#share-the-love)
+ - [Contributing](#contributing)
+ - [Bug Reports \& Feature Requests](#bug-reports--feature-requests)
+ - [Developing](#developing)
+ - [Requirements](#requirements)
+ - [Providers](#providers)
+ - [Modules](#modules)
+ - [Resources](#resources)
+ - [Inputs](#inputs)
+ - [Outputs](#outputs)
## Usage
@@ -32,12 +33,11 @@ module "citrix_core" {
ad_admin_password = var.ad_admin_password
ad_admin_username = var.ad_admin_username
provider_hostname = var.provider_hostname
- computer_name = var.computer_name
citrix_machine_catalog_account =var.citrix_machine_catalog_account
provider_disable_ssl_verification = var.provider_disable_ssl_verification
allow_list = var.allow_list
}
-
+```
---
diff --git a/examples/README.md b/examples/README.md
index 1afefbc..29095a9 100644
--- a/examples/README.md
+++ b/examples/README.md
@@ -14,7 +14,7 @@ No providers.
| Name | Source | Version |
|------|--------|---------|
-| [citrix\_core](#module\_citrix\_core) | git::https://github.com/dimi4ik/terraform-citrix-mcdg/ | v0.0.3 |
+| [citrix\_core](#module\_citrix\_core) | git::https://github.com/dimi4ik/terraform-citrix-mcdg/ | v0.0.4 |
## Resources
@@ -31,7 +31,6 @@ No resources.
| [citrix\_machine\_catalog\_description](#input\_citrix\_machine\_catalog\_description) | Description of the machine catalog | `string` | n/a | yes |
| [citrix\_machine\_catalog\_name](#input\_citrix\_machine\_catalog\_name) | Name of the machine catalog | `string` | n/a | yes |
| [citrix\_machine\_catalog\_zone](#input\_citrix\_machine\_catalog\_zone) | Zone of the machine catalog | `string` | n/a | yes |
-| [computer\_name](#input\_computer\_name) | The hostname of the Citrix DDC server | `string` | n/a | yes |
| [delivery\_group\_description](#input\_delivery\_group\_description) | Description of the delivery group | `string` | n/a | yes |
| [delivery\_group\_name](#input\_delivery\_group\_name) | Name of the Delivery Group to create | `string` | n/a | yes |
| [desktop\_description](#input\_desktop\_description) | description of the published desktop | `string` | n/a | yes |
diff --git a/examples/main.tf b/examples/main.tf
index 0714129..4374f29 100644
--- a/examples/main.tf
+++ b/examples/main.tf
@@ -3,7 +3,7 @@
################################################################
module "citrix_core" {
- source = "git::https://github.com/dimi4ik/terraform-citrix-mcdg/?ref=v0.0.3"
+ source = "git::https://github.com/dimi4ik/terraform-citrix-mcdg/?ref=v0.0.4"
delivery_group_name = var.delivery_group_name
delivery_group_description = var.delivery_group_description
desktop_description = var.desktop_description
@@ -14,7 +14,6 @@ module "citrix_core" {
ad_admin_password = var.ad_admin_password
ad_admin_username = var.ad_admin_username
provider_hostname = var.provider_hostname
- computer_name = var.computer_name
citrix_machine_catalog_account = var.citrix_machine_catalog_account
provider_disable_ssl_verification = var.provider_disable_ssl_verification
allow_list = var.allow_list
diff --git a/examples/terraform.template.tfvars.examples b/examples/terraform.template.tfvars.examples
index bd42910..000ba08 100644
--- a/examples/terraform.template.tfvars.examples
+++ b/examples/terraform.template.tfvars.examples
@@ -3,10 +3,10 @@
# Variable für neue MVD Umgebung Kunde Allgemein
#######################################################################################
-computer_name = "10.0.0.7" # # IP or FQDN of the DDC machine
-ad_admin_username = "domain\\admin"
+ad_admin_username = "domain\\admin"
provider_disable_ssl_verification = true
citrix_machine_catalog_zone = "xxxxxxxxxxxxxxxxxxx"
+provider_hostname = "10.0.0.5"
citrix_machine_catalog_name = "mc001"
citrix_machine_catalog_description = "Machine Catalog for the example delivery group"
citrix_machine_catalog_account = "domain\\vda
diff --git a/examples/variables.tf b/examples/variables.tf
index 534581c..4b6bacf 100644
--- a/examples/variables.tf
+++ b/examples/variables.tf
@@ -10,10 +10,6 @@ variable "ad_admin_password" {
sensitive = true
}
-variable "computer_name" {
- type = string
- description = "The hostname of the Citrix DDC server"
-}