Skip to content
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
4 changes: 2 additions & 2 deletions cmd/stack.go
Original file line number Diff line number Diff line change
Expand Up @@ -621,13 +621,13 @@ func init() {
newStackCmd.Flags().BoolVarP(&forceNewStack, "force", "f", false, "force stack creation.")

// Update Stack (Up)
stackCmd.AddCommand(tui.AddDependencyCheck(stackUpdateCmd, tui.Pulumi, tui.Docker, tui.DockerBuildx))
stackCmd.AddCommand(tui.AddDependencyCheck(stackUpdateCmd, tui.Docker, tui.DockerBuildx))
stackUpdateCmd.Flags().StringVarP(&envFile, "env-file", "e", "", "--env-file config/.my-env")
stackUpdateCmd.Flags().BoolVarP(&forceStack, "force", "f", false, "force override previous deployment")
tui.CheckErr(AddOptions(stackUpdateCmd, false))

// Delete Stack (Down)
stackCmd.AddCommand(tui.AddDependencyCheck(stackDeleteCmd, tui.Pulumi, tui.Docker))
stackCmd.AddCommand(tui.AddDependencyCheck(stackDeleteCmd))
stackDeleteCmd.Flags().BoolVarP(&confirmDown, "yes", "y", false, "confirm the destruction of the stack")
tui.CheckErr(AddOptions(stackDeleteCmd, false))

Expand Down
2 changes: 1 addition & 1 deletion pkg/project/stack/aws.config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# The nitric provider to use
provider: nitric/aws@1.10.1
provider: nitric/aws@1.11.1
# The target aws region to deploy to
# See available regions:
# https://docs.aws.amazon.com/general/latest/gr/lambda-service.html
Expand Down
2 changes: 1 addition & 1 deletion pkg/project/stack/awstf.config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# The nitric provider to use
provider: nitric/awstf@1.10.1
provider: nitric/awstf@1.11.1
# The target aws region to deploy to
# See available regions:
# https://docs.aws.amazon.com/general/latest/gr/lambda-service.html
Expand Down
2 changes: 1 addition & 1 deletion pkg/project/stack/azure.config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# The provider to use and it's published version
# See releases:
# https://github.com/nitrictech/nitric/tags
provider: nitric/azure@1.10.1
provider: nitric/azure@1.11.1
# The target Azure region to deploy to
# See available regions:
# https://azure.microsoft.com/en-us/explore/global-infrastructure/products-by-region/?products=container-apps
Expand Down
2 changes: 1 addition & 1 deletion pkg/project/stack/gcp.config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# The provider to use and it's published version
# See releases:
# https://github.com/nitrictech/nitric/tags
provider: nitric/gcp@1.10.1
provider: nitric/gcp@1.11.1

# The target GCP region to deploy to
# See available regions:
Expand Down
2 changes: 1 addition & 1 deletion pkg/project/stack/gcptf.config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# The provider to use and it's published version
# See releases:
# https://github.com/nitrictech/nitric/tags
provider: nitric/gcptf@1.10.1
provider: nitric/gcptf@1.11.1

# The target GCP region to deploy to
# See available regions:
Expand Down