You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/resources/runbook_process.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,8 @@ description: |-
9
9
10
10
This resource manages runbook processes in Octopus Deploy.
11
11
12
+
~> **WARNING This resource is deprecated and will be removed in a future version. Please use the `octopusdeploy_process` resource instead.
13
+
12
14
~> **NOTE Runbooks and Runbooks Processes which are stored in CaC cannot be managed via Terraform. If a project is converted to a CaC project, the Runbooks and Runbook Processes will cause warnings in your plan, and will not be updated when applying changes.
Description: "This resource manages deployment processes in Octopus Deploy.",
22
-
Importer: getImporter(),
23
-
ReadContext: resourceDeploymentProcessRead,
24
-
Schema: getDeploymentProcessSchema(),
25
-
UpdateContext: resourceDeploymentProcessUpdate,
19
+
DeprecationMessage: "The 'octopusdeploy_deployment_process' resource is deprecated and will be removed in a future version. Please use the octopusdeploy_process resource instead.",
20
+
CreateContext: resourceDeploymentProcessCreate,
21
+
DeleteContext: resourceDeploymentProcessDelete,
22
+
Description: "This resource manages deployment processes in Octopus Deploy.",
Copy file name to clipboardExpand all lines: octopusdeploy/resource_runbook_process.go
+7-6Lines changed: 7 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -16,12 +16,13 @@ import (
16
16
17
17
funcresourceRunbookProcess() *schema.Resource {
18
18
return&schema.Resource{
19
-
CreateContext: resourceRunbookProcessCreate,
20
-
DeleteContext: resourceRunbookProcessDelete,
21
-
Description: "This resource manages runbook processes in Octopus Deploy.",
22
-
ReadContext: resourceRunbookProcessRead,
23
-
Schema: getRunbookProcessSchema(),
24
-
UpdateContext: resourceRunbookProcessUpdate,
19
+
DeprecationMessage: "The 'octopusdeploy_runbook_process' resource is deprecated and will be removed in a future version. Please use the octopusdeploy_process resource instead.",
20
+
CreateContext: resourceRunbookProcessCreate,
21
+
DeleteContext: resourceRunbookProcessDelete,
22
+
Description: "This resource manages runbook processes in Octopus Deploy.",
Copy file name to clipboardExpand all lines: templates/resources/runbook_process.md.tmpl
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,8 @@ description: |-
9
9
10
10
{{ .Description | trimspace }}
11
11
12
+
~> **WARNING This resource is deprecated and will be removed in a future version. Please use the `octopusdeploy_process` resource instead.
13
+
12
14
~> **NOTE Runbooks and Runbooks Processes which are stored in CaC cannot be managed via Terraform. If a project is converted to a CaC project, the Runbooks and Runbook Processes will cause warnings in your plan, and will not be updated when applying changes.
0 commit comments