Skip to content
This repository has been archived by the owner on Oct 3, 2024. It is now read-only.

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas Rodriguez committed Nov 28, 2023
1 parent 7e56eb3 commit 1d90849
Show file tree
Hide file tree
Showing 6 changed files with 494 additions and 19 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,9 @@ update-zarf-config: ## Generate a new Zarf config file with registry type and IA
deploy-init-package-private: ## Run zarf init to deploy the AWS init package configured with private ECR registry
@cd build || exit \
&& ZARF_CONFIG="../zarf-config.yaml" zarf init \
--registry-url="$$(aws sts get-caller-identity --query 'Account' --output text).dkr.ecr.us-east-1.amazonaws.com" \
--registry-url="$$(aws sts get-caller-identity --query 'Account' --output text).dkr.ecr.us-west-2.amazonaws.com" \
--registry-push-username="AWS" \
--registry-push-password="$$(aws ecr get-login-password --region us-east-1)" \
--registry-push-password="$$(aws ecr get-login-password --region us-west-2)" \
--components="zarf-ecr-credential-helper" \
--confirm

Expand All @@ -136,9 +136,9 @@ delete-private-repos: ## Delete private ECR repos created by deploying the AWS i
deploy-init-package-public: ## Run zarf init to deploy the AWS init package configured with public ECR registry
@cd build || exit \
&& ZARF_CONFIG="../zarf-config.yaml" zarf init \
--registry-url="$$(aws ecr-public describe-registries --query 'registries[0].registryUri' --output text --region us-east-1)" \
--registry-url="$$(aws ecr-public describe-registries --query 'registries[0].registryUri' --output text --region us-west-2)" \
--registry-push-username="AWS" \
--registry-push-password="$$(aws ecr-public get-login-password --region us-east-1)" \
--registry-push-password="$$(aws ecr-public get-login-password --region us-west-2)" \
--components="zarf-ecr-credential-helper" \
--confirm

Expand Down
2 changes: 1 addition & 1 deletion go.work
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
go 1.21.3
go 1.21.4

use (
.
Expand Down
Loading

0 comments on commit 1d90849

Please sign in to comment.