diff --git a/examples/resources/octopusdeploy_azure_service_fabric_cluster_deployment_target/resource.tf b/examples/resources/octopusdeploy_azure_service_fabric_cluster_deployment_target/resource.tf index 963823968..d3875e32f 100644 --- a/examples/resources/octopusdeploy_azure_service_fabric_cluster_deployment_target/resource.tf +++ b/examples/resources/octopusdeploy_azure_service_fabric_cluster_deployment_target/resource.tf @@ -1,9 +1,7 @@ resource "octopusdeploy_azure_service_fabric_cluster_deployment_target" "example" { - account_id = "Accounts-123" connection_endpoint = "[connection-endpoint]" environments = ["Environments-123", "Environment-321"] name = "Azure Service Fabric Cluster Deployment Target (OK to Delete)" - storage_account_name = "[storage_account_name]" roles = ["Development Team", "System Administrators"] tenanted_deployment_participation = "Untenanted" } diff --git a/examples/resources/octopusdeploy_listening_tentacle_deployment_target/resource.tf b/examples/resources/octopusdeploy_listening_tentacle_deployment_target/resource.tf index be452b53d..d7d1a4386 100644 --- a/examples/resources/octopusdeploy_listening_tentacle_deployment_target/resource.tf +++ b/examples/resources/octopusdeploy_listening_tentacle_deployment_target/resource.tf @@ -1,7 +1,7 @@ resource "octopusdeploy_listening_tentacle_deployment_target" "example" { environments = ["Environments-123", "Environment-321"] is_disabled = true - machine_policy_id = "MachinePolicy-123" + machine_policy_id = "MachinePolicies-123" name = "Listening Tentacle Deployment Target (OK to Delete)" roles = ["Development Team", "System Administrators"] tenanted_deployment_participation = "Untenanted" diff --git a/examples/resources/octopusdeploy_offline_package_drop_deployment_target/resource.tf b/examples/resources/octopusdeploy_offline_package_drop_deployment_target/resource.tf index be452b53d..ba403800b 100644 --- a/examples/resources/octopusdeploy_offline_package_drop_deployment_target/resource.tf +++ b/examples/resources/octopusdeploy_offline_package_drop_deployment_target/resource.tf @@ -1,10 +1,11 @@ -resource "octopusdeploy_listening_tentacle_deployment_target" "example" { +resource "octopusdeploy_offline_package_drop_deployment_target" "example" { environments = ["Environments-123", "Environment-321"] is_disabled = true - machine_policy_id = "MachinePolicy-123" - name = "Listening Tentacle Deployment Target (OK to Delete)" + machine_policy_id = "MachinePolicies-123" + name = "Offline Package Drop Deployment Target (OK to Delete)" roles = ["Development Team", "System Administrators"] tenanted_deployment_participation = "Untenanted" - tentacle_url = "https://example.com:1234/" thumbprint = "" + working_directory = "" + applications_directory = "" } diff --git a/examples/resources/octopusdeploy_polling_tentacle_deployment_target/resource.tf b/examples/resources/octopusdeploy_polling_tentacle_deployment_target/resource.tf index be452b53d..fe8bb9f59 100644 --- a/examples/resources/octopusdeploy_polling_tentacle_deployment_target/resource.tf +++ b/examples/resources/octopusdeploy_polling_tentacle_deployment_target/resource.tf @@ -1,8 +1,8 @@ -resource "octopusdeploy_listening_tentacle_deployment_target" "example" { +resource "octopusdeploy_polling_tentacle_deployment_target" "example" { environments = ["Environments-123", "Environment-321"] is_disabled = true - machine_policy_id = "MachinePolicy-123" - name = "Listening Tentacle Deployment Target (OK to Delete)" + machine_policy_id = "MachinePolicies-123" + name = "Polling Tentacle Deployment Target (OK to Delete)" roles = ["Development Team", "System Administrators"] tenanted_deployment_participation = "Untenanted" tentacle_url = "https://example.com:1234/" diff --git a/examples/resources/octopusdeploy_ssh_connection_deployment_target/resource.tf b/examples/resources/octopusdeploy_ssh_connection_deployment_target/resource.tf index 8910e87eb..3f186be43 100644 --- a/examples/resources/octopusdeploy_ssh_connection_deployment_target/resource.tf +++ b/examples/resources/octopusdeploy_ssh_connection_deployment_target/resource.tf @@ -1,6 +1,9 @@ resource "octopusdeploy_ssh_connection_deployment_target" "example" { - name = "SSH Connection Deployment Target (OK to Delete)" - fingerprint = "[fingerprint]" - host = "[host]" - port = 22 + name = "SSH Connection Deployment Target (OK to Delete)" + fingerprint = "" + host = "" + port = 22 + environments = ["Environments-123", "Environment-321"] + account_id = "Accounts-1" + roles = ["Development Team", "System Administrators"] }