Skip to content

Commit

Permalink
Merge pull request #2634 from OctopusDeploy/tk/broken-links
Browse files Browse the repository at this point in the history
Fixing broken link
  • Loading branch information
tonykelly-octopus authored Feb 19, 2025
2 parents a2970d3 + 5db4009 commit 1ffcb46
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/pages/docs/releases/deployment-timeline.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description: View and interact with the Deployment Timeline
navOrder: 132
---

The Deployment Timeline provides visual representation of all deployments made to an [Environment](/docs/infrastructure/environments) for a [Project](/docs/projects) within a [Tenant](docs/tenants). In additional to providing an easy to understand view of deployment data, the Deployment Timeline allows easy access to perform common workflows, such as deploying the last successful/stable deployment into your environment.
The Deployment Timeline provides visual representation of all deployments made to an [Environment](/docs/infrastructure/environments) for a [Project](/docs/projects) within a [Tenant](/docs/tenants). In additional to providing an easy to understand view of deployment data, the Deployment Timeline allows easy access to perform common workflows, such as deploying the last successful/stable deployment into your environment.

It can be access by clicking the **Timeline** button within the deployment details page.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ To create a runbook to deploy resources to Azure using the *Deploy an Azure Reso

1. Select the **Resource Group** to place the created resources in. This can be selected from the drop-down of available resources or bound to a variable. The resource group must exist when the step is executed.

1. Set the **Deployment Mode**. It can be either [Incremental or Complete](https://learn.microsoft.com/en-us/azure/azure-resource-manager/templates/deployment-modes).
1. Set the **Deployment Mode**. It can be either [Incremental or Complete](https://learn.microsoft.com/en-us/azure/azure-resource-manager/templates/deploy-to-resource-group?tabs=azure-cli).
1. Choose the **Template Source**. It can be either [JSON entered directly](#json-template) into the step, or a file [contained in a package](#packaged-template).
1. Enter any values for parameters if they are present.

Expand Down Expand Up @@ -74,10 +74,10 @@ Although you can use variables directly in the template, it is more idiomatic to
### Sensitive data

:::div{.warning}
Parameters marked as [secure strings](https://azure.microsoft.com/en-us/documentation/articles/resource-group-authoring-templates/) represent sensitive data and it is important to make sure they aren't stored in plain text form.
Parameters marked as [secure strings](https://learn.microsoft.com/en-us/azure/azure-resource-manager/templates/overview) represent sensitive data and it is important to make sure they aren't stored in plain text form.
:::

The field displayed when "From Octopus" option is selected stores data as plain text so sensitive data shouldn't be typed directly into it. Instead, the value of the parameter should be provided either via a [Sensitive Variable](/docs/projects/variables/sensitive-variables/) if the value is stored in Octopus or via [Azure Key Vault](https://learn.microsoft.com/en-us/azure/azure-resource-manager/templates/key-vault-parameter) if the value is stored outside of Octopus. Azure Resource Group Templates provide [out of the box integration with Azure Key Vault](https://learn.microsoft.com/en-us/azure/azure-resource-manager/templates/key-vault-parameter).
The field displayed when "From Octopus" option is selected stores data as plain text so sensitive data shouldn't be typed directly into it. Instead, the value of the parameter should be provided either via a [Sensitive Variable](/docs/projects/variables/sensitive-variables/) if the value is stored in Octopus or via [Azure Key Vault](https://learn.microsoft.com/en-us/azure/azure-resource-manager/templates/key-vault-parameter) if the value is stored outside of Octopus. Azure Resource Group Templates provide [out of the box integration with Azure Key Vault](https://learn.microsoft.com/en-us/azure/azure-resource-manager/templates/key-vault-parameter?tabs=azure-cli).

:::figure
![](/docs/runbooks/runbook-examples/azure/resource-groups/arm-sensitive-data.png)
Expand Down Expand Up @@ -165,7 +165,7 @@ The Parameter JSON file can be in one of two formats:

### Accessing ARM template output parameters {#arm-template-out-params}

Any [outputs](https://azure.microsoft.com/en-us/documentation/articles/resource-group-authoring-templates/#outputs) from the ARM template step are made available as [Octopus output-variables](/docs/projects/variables/output-variables) automatically. For example, an output `Foo` would be available as:
Any outputs from the ARM template step are made available as [Octopus output-variables](/docs/projects/variables/output-variables) automatically. For example, an output `Foo` would be available as:

```powershell
Octopus.Action[Arm Template Step Name].Output.AzureRmOutputs[Foo]
Expand Down

0 comments on commit 1ffcb46

Please sign in to comment.