diff --git a/content/en/get-started/lambda/deploy-details.webp b/content/en/get-started/lambda/deploy-details.webp index ab04676a..b2f6c9ec 100644 Binary files a/content/en/get-started/lambda/deploy-details.webp and b/content/en/get-started/lambda/deploy-details.webp differ diff --git a/content/en/get-started/lambda/deployed-function-list.webp b/content/en/get-started/lambda/deployed-function-list.webp index 7c0bed19..f44bb75f 100644 Binary files a/content/en/get-started/lambda/deployed-function-list.webp and b/content/en/get-started/lambda/deployed-function-list.webp differ diff --git a/content/en/get-started/lambda/function-test.webp b/content/en/get-started/lambda/function-test.webp index be52ccd3..dbfe67d3 100644 Binary files a/content/en/get-started/lambda/function-test.webp and b/content/en/get-started/lambda/function-test.webp differ diff --git a/content/en/get-started/lambda/index.md b/content/en/get-started/lambda/index.md index 26ac48bd..f9e545f3 100644 --- a/content/en/get-started/lambda/index.md +++ b/content/en/get-started/lambda/index.md @@ -53,16 +53,11 @@ Confirm the device code in your browser when prompted. Then return to this guide ## Create S3 buckets -You need to store your AWS Lambda function as a zip file in an S3 bucket, and S3 bucket needs to be in the same region you deploy to. For this guide, you are going to deploy the AWS Lambda function to four regions so you need to create four buckets: +You need to store your AWS Lambda function as a zip file in an S3 bucket, and S3 bucket needs to be in the same region you deploy to. +For this guide you are going to need to create S3 buckets in four regions, us-east-1, us-east-2, us-west-1, and us-west-2 . You reference these buckets as `-` (i.e `-us-west-1` ). -| Region | Bucket Name | -| ---------|----------| -| us-east-1 | armory-demo-east-1 | -| us-east-2 | armory-demo-east-2 | -| us-west-1 | armory-demo-west-1 | -| us-west-2 | armory-demo-west-2 | - +Create each bucket by entering `-` into the **Bucket Name** field. Use the default values for the rest of the fields. After you have finished, you should have four buckets. @@ -106,13 +101,13 @@ const potatolessFacts = [ 1. Download the function zip file. -1. Upload the file to each of your `armory-demo-lambda-deploy` S3 buckets. +1. Upload the file to each of your `` S3 buckets. 1. Make a note of each bucket's S3 path to the lambda function. The paths should be: - * `s3://armory-demo-east-1/just-sweet-potatoes.zip` - * `s3://armory-demo-east-2/just-sweet-potatoes.zip` - * `s3://armory-demo-west-1/just-sweet-potatoes.zip` - * `s3://armory-demo-west-2/just-sweet-potatoes.zip` + * `s3://-us-east-1/just-sweet-potatoes.zip` + * `s3://-us-east-2/just-sweet-potatoes.zip` + * `s3://-us-west-1/just-sweet-potatoes.zip` + * `s3://-us-west-2/just-sweet-potatoes.zip` ## Create your deployment config file @@ -212,16 +207,16 @@ The function is named `just-sweet-potatoes` in each S3 bucket, but the `function {{< highlight yaml "linenos=table" >}} artifacts: - functionName: just-sweet-potatoes-dev - path: s3://armory-demo-east-1/just-sweet-potatoes.zip + path: s3://-us-east-1/just-sweet-potatoes.zip type: zipFile - functionName: just-sweet-potatoes-staging - path: s3://armory-demo-east-2/just-sweet-potatoes.zip + path: s3://-us-east-2/just-sweet-potatoes.zip type: zipFile - functionName: just-sweet-potatoes-prod-west-1 - path: s3://armory-demo-west-1/just-sweet-potatoes.zip + path: s3://-us-west-1/just-sweet-potatoes.zip type: zipFile - functionName: just-sweet-potatoes-prod-west-2 - path: s3://armory-demo-west-2/just-sweet-potatoes.zip + path: s3://-us-west-2/just-sweet-potatoes.zip type: zipFile {{< /highlight >}} @@ -236,22 +231,22 @@ providerOptions: name: just-sweet-potatoes-dev runAsIamRole: handler: index.handler - runtime: python3.10 + runtime: nodejs18.x - target: staging name: just-sweet-potatoes-staging runAsIamRole: handler: index.handler - runtime: python3.10 + runtime: nodejs18.x - target: prod-west-1 name: just-sweet-potatoes-prod-west-1 runAsIamRole: handler: index.handler - runtime: python3.10 + runtime: nodejs18.x - target: prod-west-2 name: just-sweet-potatoes-prod-west-2 runAsIamRole: handler: index.handler - runtime: python3.10 + runtime: nodejs18.x {{< /highlight >}} {{< include "dep-file/lambda-provider-options.md" >}} diff --git a/content/en/get-started/lambda/manual-constraint.webp b/content/en/get-started/lambda/manual-constraint.webp index 4374e02f..254f5a80 100644 Binary files a/content/en/get-started/lambda/manual-constraint.webp and b/content/en/get-started/lambda/manual-constraint.webp differ diff --git a/content/en/get-started/lambda/s3-buckets.webp b/content/en/get-started/lambda/s3-buckets.webp index 291fdbe1..a6bb5df6 100644 Binary files a/content/en/get-started/lambda/s3-buckets.webp and b/content/en/get-started/lambda/s3-buckets.webp differ diff --git a/content/en/get-started/quickstart/clickApprove.jpg b/content/en/get-started/quickstart/clickApprove.jpg index 94205356..8884d84e 100644 Binary files a/content/en/get-started/quickstart/clickApprove.jpg and b/content/en/get-started/quickstart/clickApprove.jpg differ diff --git a/content/en/get-started/quickstart/deployFinishedDetails.jpg b/content/en/get-started/quickstart/deployFinishedDetails.jpg index 17e875b4..3e1372e8 100644 Binary files a/content/en/get-started/quickstart/deployFinishedDetails.jpg and b/content/en/get-started/quickstart/deployFinishedDetails.jpg differ diff --git a/content/en/get-started/quickstart/openTrafficSplitDetails.jpg b/content/en/get-started/quickstart/openTrafficSplitDetails.jpg index 4213a467..0c648216 100644 Binary files a/content/en/get-started/quickstart/openTrafficSplitDetails.jpg and b/content/en/get-started/quickstart/openTrafficSplitDetails.jpg differ diff --git a/content/en/get-started/quickstart/trafficSplitDetailsWindow.jpg b/content/en/get-started/quickstart/trafficSplitDetailsWindow.jpg index e4c48208..8f3eabd0 100644 Binary files a/content/en/get-started/quickstart/trafficSplitDetailsWindow.jpg and b/content/en/get-started/quickstart/trafficSplitDetailsWindow.jpg differ diff --git a/content/en/iam/manage-rbac-roles/index.md b/content/en/iam/manage-rbac-roles/index.md index 2e8519b7..e44c4706 100644 --- a/content/en/iam/manage-rbac-roles/index.md +++ b/content/en/iam/manage-rbac-roles/index.md @@ -242,5 +242,5 @@ Execute `armory config apply -f .yml` to apply your changes You can check that you deleted your role by running `armory config get`. -When you delete a role, that role is removed from existing users. You can accidentally remove the ability for your users to perform actions within CD-as-a-Service. A user with no role can still log into the UI but only sees a blank **Deployments** screen: +When you delete a role, that role is removed from existing users. You can accidentally remove the ability for your users to perform actions within CD-as-a-Service. A user with no role can still log into the UI but only sees a blank **Deployments** screen and will receive a 'Principal Not Authorized' error: {{< figure src="user-no-role.png" >}} diff --git a/content/en/iam/manage-rbac-roles/user-no-role.png b/content/en/iam/manage-rbac-roles/user-no-role.png index 75128403..1aa830e1 100644 Binary files a/content/en/iam/manage-rbac-roles/user-no-role.png and b/content/en/iam/manage-rbac-roles/user-no-role.png differ diff --git a/content/en/iam/manage-tenants/index.md b/content/en/iam/manage-tenants/index.md index 417a06f9..3a816a26 100644 --- a/content/en/iam/manage-tenants/index.md +++ b/content/en/iam/manage-tenants/index.md @@ -104,5 +104,5 @@ You use the UI to switch to the tenant whose resources you want to see. CD-as-a- {{< figure src="ui-switch-tenant.jpg" alt="Switch Tenant." >}} 1. Access your user context menu. -1. Hover over **Switch Tenant** to display a list of accessible tenants. +1. Click the **Switch Tenant** button. 1. Click the tenant you want to switch to. diff --git a/content/en/iam/manage-tenants/ui-switch-tenant.jpg b/content/en/iam/manage-tenants/ui-switch-tenant.jpg index 0e7ec868..50f41522 100644 Binary files a/content/en/iam/manage-tenants/ui-switch-tenant.jpg and b/content/en/iam/manage-tenants/ui-switch-tenant.jpg differ diff --git a/content/en/troubleshooting/rbac/user-no-role.png b/content/en/troubleshooting/rbac/user-no-role.png index 75128403..1aa830e1 100644 Binary files a/content/en/troubleshooting/rbac/user-no-role.png and b/content/en/troubleshooting/rbac/user-no-role.png differ diff --git a/content/en/tutorials/tutorial-blue-green/approve-prod-start.jpg b/content/en/tutorials/tutorial-blue-green/approve-prod-start.jpg index 2e2ad41e..6e135c69 100644 Binary files a/content/en/tutorials/tutorial-blue-green/approve-prod-start.jpg and b/content/en/tutorials/tutorial-blue-green/approve-prod-start.jpg differ diff --git a/content/en/tutorials/tutorial-blue-green/deployFinish.jpg b/content/en/tutorials/tutorial-blue-green/deployFinish.jpg index 5b07f25e..3906f8c4 100644 Binary files a/content/en/tutorials/tutorial-blue-green/deployFinish.jpg and b/content/en/tutorials/tutorial-blue-green/deployFinish.jpg differ diff --git a/content/en/tutorials/tutorial-blue-green/detailsWithPreviewLink.jpg b/content/en/tutorials/tutorial-blue-green/detailsWithPreviewLink.jpg index b4ff690b..be9a34ba 100644 Binary files a/content/en/tutorials/tutorial-blue-green/detailsWithPreviewLink.jpg and b/content/en/tutorials/tutorial-blue-green/detailsWithPreviewLink.jpg differ diff --git a/content/en/tutorials/tutorial-blue-green/openDetailsWindow.jpg b/content/en/tutorials/tutorial-blue-green/openDetailsWindow.jpg index 6b557846..7e2fd5f0 100644 Binary files a/content/en/tutorials/tutorial-blue-green/openDetailsWindow.jpg and b/content/en/tutorials/tutorial-blue-green/openDetailsWindow.jpg differ