Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions docs/providers/pulumi/aws/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,38 @@ You can create an Access Key by logging into the [AWS console](https://aws.amazo
for full details on credentials and configuration.
</Note>

## Locating deployed resources

This Nitric AWS provider creates a resource tag manager group and tags all possible resources to be referenced by this group. You can locate resources using the [AWS Console](https://console.aws.amazon.com/).

Start by navigating to the [Resource Groups service](https://console.aws.amazon.com/resource-groups/home):

![resource group search image](/docs/images/docs/aws-rg.png)

Find your stack's resource group in the list and click it:

<Note>
Resource groups are conventionally named `<project-name>-<stack-name>`

In this example the project name is `api-testing` and the stack name is `aws`.
</Note>

![resource group list image](/docs/images/docs/aws-rg-screen.png)

More recent versions of the Nitric AWS provider also display a direct link to the resource group in output from `nitric up`.

Example:

```bash
Deployed Resources:
──────────────
https://us-east-2.console.aws.amazon.com/resource-groups/group/arn%3Aaws%3Aresource-groups%3Aus-east-2%3A3123456789%3Agroup%2Fexample-aws

API Endpoints:
──────────────
main: https://example.execute-api.us-east-2.amazonaws.com
```

## Stack Configuration

```yaml title:nitric.[stack ID].yaml
Expand Down
28 changes: 28 additions & 0 deletions docs/providers/pulumi/azure/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,34 @@ brew update && brew install azure-cli

</OSTabs>

## Locating deployed resources

This Nitric Azure provider deploys resources for a stack into a resource group dedicated to that stack. You can either use one your already have by configuring it in the stack configuration or let Nitric create one for you.

Once a stack has been deployed to Azure it's resource group should be present in the [Resource groups](https://portal.azure.com/#blade/HubsExtension/BrowseResourceGroupBlade/resourceType/Microsoft.Resources%2Fsubscriptions%2FresourceGroups) page of the portal. Assuming it was deployed to a subscription you have access to.

<Note>
Resource groups are conventionally named `<project-name>-<stack-name>-<randomId>`

In this example the project name is `api-testing` and the stack name is `az`.
</Note>

![resource group page screen](/docs/images/docs/az-rg.png)

More recent versions of the Nitric Azure provider display a direct link to the resource group in output from `nitric up`.

Example:

```bash
Resource Group:
──────────────
https://portal.azure.com/#@your-tenant-id/resource/subscriptions/your-subscription-id/resourceGroups/your-resource-group/overview

API Endpoints:
──────────────
main: https://example-api865cb.azure-api.net
```

## Stack Configuration

```yaml title:nitric.[stack ID].yaml
Expand Down
17 changes: 17 additions & 0 deletions docs/providers/terraform/aws.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,23 @@ You can create an Access Key by logging into the [AWS console](https://aws.amazo
for full details on credentials and configuration.
</Note>

## Locating deployed resources

Nitric creates a resource tag manager group and tags all possible resources to be referenced by this group. You can locate resources in the console by going to the [AWS Console](https://console.aws.amazon.com/)

Next, navigate to the [Resource Groups service](https://console.aws.amazon.com/resource-groups/home):

![resource group search image](/docs/images/docs/aws-rg.png)

Find your stack's resource group in the list and click it:

<Note>
Resource groups are conventionally named `<project-name>-<stack-name>`

In this example the project name is `api-testing` and the stack name is `aws`.
</Note>

![resource group list image](/docs/images/docs/aws-rg-screen.png)
## Stack Configuration

```yaml title:nitric.[stack ID].yaml
Expand Down
Binary file added public/images/docs/aws-rg-screen.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/docs/aws-rg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/docs/az-rg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading