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
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@ ARGS:
[secret-environment-variables.{index}.key]
[secret-environment-variables.{index}.value]
[tags.{index}] Tags of the Serverless Container Namespace
[activate-vpc-integration] Activate VPC integration for the namespace.
[region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw)

DEPRECATED ARGS:
[activate-vpc-integration] [DEPRECATED] By default, as of 2025/08/20, all namespaces are now compatible with VPC.

FLAGS:
-h, --help help for create
-w, --wait wait until the namespace is ready
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@ ARGS:
[secret-environment-variables.{index}.key]
[secret-environment-variables.{index}.value]
[tags.{index}] Tags of the Serverless Function Namespace
[activate-vpc-integration] Activate VPC integration for the namespace.
[region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw)

DEPRECATED ARGS:
[activate-vpc-integration] [DEPRECATED] By default, as of 2025/08/20, all namespaces are now compatible with VPC.

FLAGS:
-h, --help help for create

Expand Down
2 changes: 1 addition & 1 deletion docs/commands/container.md
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ scw container namespace create [arg=value ...]
| secret-environment-variables.{index}.key | | |
| secret-environment-variables.{index}.value | | |
| tags.{index} | | Tags of the Serverless Container Namespace |
| activate-vpc-integration | | Activate VPC integration for the namespace. |
| ~~activate-vpc-integration~~ | Deprecated | [DEPRECATED] By default, as of 2025/08/20, all namespaces are now compatible with VPC. |
| region | Default: `fr-par`<br />One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config |


Expand Down
2 changes: 1 addition & 1 deletion docs/commands/function.md
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ scw function namespace create [arg=value ...]
| secret-environment-variables.{index}.key | | |
| secret-environment-variables.{index}.value | | |
| tags.{index} | | Tags of the Serverless Function Namespace |
| activate-vpc-integration | | Activate VPC integration for the namespace. |
| ~~activate-vpc-integration~~ | Deprecated | [DEPRECATED] By default, as of 2025/08/20, all namespaces are now compatible with VPC. |
| region | Default: `fr-par`<br />One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config |


Expand Down
4 changes: 2 additions & 2 deletions internal/namespaces/container/v1beta1/container_cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -279,9 +279,9 @@ func containerNamespaceCreate() *core.Command {
},
{
Name: "activate-vpc-integration",
Short: `Activate VPC integration for the namespace.`,
Short: `[DEPRECATED] By default, as of 2025/08/20, all namespaces are now compatible with VPC.`,
Required: false,
Deprecated: false,
Deprecated: true,
Positional: false,
},
core.RegionArgSpec(
Expand Down
4 changes: 2 additions & 2 deletions internal/namespaces/function/v1beta1/function_cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -326,9 +326,9 @@ func functionNamespaceCreate() *core.Command {
},
{
Name: "activate-vpc-integration",
Short: `Activate VPC integration for the namespace.`,
Short: `[DEPRECATED] By default, as of 2025/08/20, all namespaces are now compatible with VPC.`,
Required: false,
Deprecated: false,
Deprecated: true,
Positional: false,
},
core.RegionArgSpec(
Expand Down
Loading