-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: fix up machine examples (#565)
- Loading branch information
Showing
5 changed files
with
16 additions
and
14 deletions.
There are no files selected for viewing
2 changes: 0 additions & 2 deletions
2
examples/resources/octopusdeploy_azure_service_fabric_cluster_deployment_target/resource.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" | ||
} |
2 changes: 1 addition & 1 deletion
2
examples/resources/octopusdeploy_listening_tentacle_deployment_target/resource.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 5 additions & 4 deletions
9
examples/resources/octopusdeploy_offline_package_drop_deployment_target/resource.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 = "<thumbprint>" | ||
working_directory = "<working directory>" | ||
applications_directory = "<applications directory>" | ||
} |
6 changes: 3 additions & 3 deletions
6
examples/resources/octopusdeploy_polling_tentacle_deployment_target/resource.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 7 additions & 4 deletions
11
examples/resources/octopusdeploy_ssh_connection_deployment_target/resource.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 = "<fingerprint>" | ||
host = "<host>" | ||
port = 22 | ||
environments = ["Environments-123", "Environment-321"] | ||
account_id = "Accounts-1" | ||
roles = ["Development Team", "System Administrators"] | ||
} |