selectel.CraasTokenV2
Creates and manages tokens in Container Registry using public API v2. For more information about Container Registry, see the official Selectel documentation.
Basic usage example
import * as pulumi from "@pulumi/pulumi";
import * as selectel from "@pulumi/selectel";
const token1 = new selectel.CraasTokenV2("token1", {
projectId: selectel_vpc_project_v2.project_1.id,
modeRw: true,
allRegistries: true,
registryIds: [],
isSet: true,
expiresAt: "2029-01-01T00:00:00Z",
});
import pulumi
import pulumi_selectel as selectel
token1 = selectel.CraasTokenV2("token1",
project_id=selectel_vpc_project_v2["project_1"]["id"],
mode_rw=True,
all_registries=True,
registry_ids=[],
is_set=True,
expires_at="2029-01-01T00:00:00Z")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/selectel/v7/selectel"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := selectel.NewCraasTokenV2(ctx, "token1", &selectel.CraasTokenV2Args{
ProjectId: pulumi.Any(selectel_vpc_project_v2.Project_1.Id),
ModeRw: pulumi.Bool(true),
AllRegistries: pulumi.Bool(true),
RegistryIds: pulumi.StringArray{},
IsSet: pulumi.Bool(true),
ExpiresAt: pulumi.String("2029-01-01T00:00:00Z"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Selectel = Pulumi.Selectel;
return await Deployment.RunAsync(() =>
{
var token1 = new Selectel.CraasTokenV2("token1", new()
{
ProjectId = selectel_vpc_project_v2.Project_1.Id,
ModeRw = true,
AllRegistries = true,
RegistryIds = new[] {},
IsSet = true,
ExpiresAt = "2029-01-01T00:00:00Z",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.selectel.CraasTokenV2;
import com.pulumi.selectel.CraasTokenV2Args;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var token1 = new CraasTokenV2("token1", CraasTokenV2Args.builder()
.projectId(selectel_vpc_project_v2.project_1().id())
.modeRw(true)
.allRegistries(true)
.registryIds()
.isSet(true)
.expiresAt("2029-01-01T00:00:00Z")
.build());
}
}
resources:
token1:
type: selectel:CraasTokenV2
properties:
projectId: ${selectel_vpc_project_v2.project_1.id}
modeRw: true
allRegistries: true
registryIds: []
isSet: true
expiresAt: 2029-01-01T00:00:00Z
Docker CLI login example
import * as pulumi from "@pulumi/pulumi";
import * as selectel from "@pulumi/selectel";
const token1 = new selectel.CraasTokenV2("token1", {
projectId: selectel_vpc_project_v2.project_1.id,
modeRw: true,
allRegistries: true,
registryIds: [],
isSet: true,
expiresAt: "2029-01-01T00:00:00Z",
});
export const registryUsername = token1.username;
export const registryToken = token1.token;
import pulumi
import pulumi_selectel as selectel
token1 = selectel.CraasTokenV2("token1",
project_id=selectel_vpc_project_v2["project_1"]["id"],
mode_rw=True,
all_registries=True,
registry_ids=[],
is_set=True,
expires_at="2029-01-01T00:00:00Z")
pulumi.export("registryUsername", token1.username)
pulumi.export("registryToken", token1.token)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/selectel/v7/selectel"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
token1, err := selectel.NewCraasTokenV2(ctx, "token1", &selectel.CraasTokenV2Args{
ProjectId: pulumi.Any(selectel_vpc_project_v2.Project_1.Id),
ModeRw: pulumi.Bool(true),
AllRegistries: pulumi.Bool(true),
RegistryIds: pulumi.StringArray{},
IsSet: pulumi.Bool(true),
ExpiresAt: pulumi.String("2029-01-01T00:00:00Z"),
})
if err != nil {
return err
}
ctx.Export("registryUsername", token1.Username)
ctx.Export("registryToken", token1.Token)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Selectel = Pulumi.Selectel;
return await Deployment.RunAsync(() =>
{
var token1 = new Selectel.CraasTokenV2("token1", new()
{
ProjectId = selectel_vpc_project_v2.Project_1.Id,
ModeRw = true,
AllRegistries = true,
RegistryIds = new[] {},
IsSet = true,
ExpiresAt = "2029-01-01T00:00:00Z",
});
return new Dictionary<string, object?>
{
["registryUsername"] = token1.Username,
["registryToken"] = token1.Token,
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.selectel.CraasTokenV2;
import com.pulumi.selectel.CraasTokenV2Args;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var token1 = new CraasTokenV2("token1", CraasTokenV2Args.builder()
.projectId(selectel_vpc_project_v2.project_1().id())
.modeRw(true)
.allRegistries(true)
.registryIds()
.isSet(true)
.expiresAt("2029-01-01T00:00:00Z")
.build());
ctx.export("registryUsername", token1.username());
ctx.export("registryToken", token1.token());
}
}
resources:
token1:
type: selectel:CraasTokenV2
properties:
projectId: ${selectel_vpc_project_v2.project_1.id}
modeRw: true
allRegistries: true
registryIds: []
isSet: true
expiresAt: 2029-01-01T00:00:00Z
outputs:
registryUsername: ${token1.username}
registryToken: ${token1.token}
REGISTRY_USERNAME=$(terraform output -raw registry_username)
REGISTRY_TOKEN=$(terraform output -raw registry_token)
echo $REGISTRY_TOKEN | docker login cr.selcloud.ru --username $REGISTRY_USERNAME --password-stdin
Create CraasTokenV2 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CraasTokenV2(name: string, args: CraasTokenV2Args, opts?: CustomResourceOptions);@overload
def CraasTokenV2(resource_name: str,
args: CraasTokenV2Args,
opts: Optional[ResourceOptions] = None)
@overload
def CraasTokenV2(resource_name: str,
opts: Optional[ResourceOptions] = None,
all_registries: Optional[bool] = None,
is_set: Optional[bool] = None,
mode_rw: Optional[bool] = None,
project_id: Optional[str] = None,
craas_token_v2_id: Optional[str] = None,
expires_at: Optional[str] = None,
name: Optional[str] = None,
registry_ids: Optional[Sequence[str]] = None)func NewCraasTokenV2(ctx *Context, name string, args CraasTokenV2Args, opts ...ResourceOption) (*CraasTokenV2, error)public CraasTokenV2(string name, CraasTokenV2Args args, CustomResourceOptions? opts = null)
public CraasTokenV2(String name, CraasTokenV2Args args)
public CraasTokenV2(String name, CraasTokenV2Args args, CustomResourceOptions options)
type: selectel:CraasTokenV2
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args CraasTokenV2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args CraasTokenV2Args
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args CraasTokenV2Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CraasTokenV2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CraasTokenV2Args
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var craasTokenV2Resource = new Selectel.CraasTokenV2("craasTokenV2Resource", new()
{
AllRegistries = false,
IsSet = false,
ModeRw = false,
ProjectId = "string",
CraasTokenV2Id = "string",
ExpiresAt = "string",
Name = "string",
RegistryIds = new[]
{
"string",
},
});
example, err := selectel.NewCraasTokenV2(ctx, "craasTokenV2Resource", &selectel.CraasTokenV2Args{
AllRegistries: pulumi.Bool(false),
IsSet: pulumi.Bool(false),
ModeRw: pulumi.Bool(false),
ProjectId: pulumi.String("string"),
CraasTokenV2Id: pulumi.String("string"),
ExpiresAt: pulumi.String("string"),
Name: pulumi.String("string"),
RegistryIds: pulumi.StringArray{
pulumi.String("string"),
},
})
var craasTokenV2Resource = new CraasTokenV2("craasTokenV2Resource", CraasTokenV2Args.builder()
.allRegistries(false)
.isSet(false)
.modeRw(false)
.projectId("string")
.craasTokenV2Id("string")
.expiresAt("string")
.name("string")
.registryIds("string")
.build());
craas_token_v2_resource = selectel.CraasTokenV2("craasTokenV2Resource",
all_registries=False,
is_set=False,
mode_rw=False,
project_id="string",
craas_token_v2_id="string",
expires_at="string",
name="string",
registry_ids=["string"])
const craasTokenV2Resource = new selectel.CraasTokenV2("craasTokenV2Resource", {
allRegistries: false,
isSet: false,
modeRw: false,
projectId: "string",
craasTokenV2Id: "string",
expiresAt: "string",
name: "string",
registryIds: ["string"],
});
type: selectel:CraasTokenV2
properties:
allRegistries: false
craasTokenV2Id: string
expiresAt: string
isSet: false
modeRw: false
name: string
projectId: string
registryIds:
- string
CraasTokenV2 Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The CraasTokenV2 resource accepts the following input properties:
- All
Registries bool Specifies if the token provides access to all registries. Changing this updates the token.
Boolean flag:
- Is
Set bool Specifies if the token lifetime is limited. Changing this updates the token.
Boolean flag:
- Mode
Rw bool Specifies the scope of access to registries. Changing this updates the token.
Boolean flag:
- Project
Id string - Unique identifier of the associated project. Changing this creates a new token. Retrieved from the selectel.VpcProjectV2 resource. Learn more about Projects.
- Craas
Token stringV2Id - Expires
At string - Token lifetime in the RFC3339 timestamp format, for example,
2025-03-09T12:58:49Z. Changing this updates the token. Required whenis_setistrue. - Name string
- Token name. Changing this updates the token.
- Registry
Ids List<string> - Unique identifier of the specific registry access to which is granted. Changing this updates the token. Required when
all _registriesisfalse. To get the registry ID, in the Control panel, go to Products ⟶ Container Registry ⟶ copy the ID under the registry name.
- All
Registries bool Specifies if the token provides access to all registries. Changing this updates the token.
Boolean flag:
- Is
Set bool Specifies if the token lifetime is limited. Changing this updates the token.
Boolean flag:
- Mode
Rw bool Specifies the scope of access to registries. Changing this updates the token.
Boolean flag:
- Project
Id string - Unique identifier of the associated project. Changing this creates a new token. Retrieved from the selectel.VpcProjectV2 resource. Learn more about Projects.
- Craas
Token stringV2Id - Expires
At string - Token lifetime in the RFC3339 timestamp format, for example,
2025-03-09T12:58:49Z. Changing this updates the token. Required whenis_setistrue. - Name string
- Token name. Changing this updates the token.
- Registry
Ids []string - Unique identifier of the specific registry access to which is granted. Changing this updates the token. Required when
all _registriesisfalse. To get the registry ID, in the Control panel, go to Products ⟶ Container Registry ⟶ copy the ID under the registry name.
- all
Registries Boolean Specifies if the token provides access to all registries. Changing this updates the token.
Boolean flag:
- is
Set Boolean Specifies if the token lifetime is limited. Changing this updates the token.
Boolean flag:
- mode
Rw Boolean Specifies the scope of access to registries. Changing this updates the token.
Boolean flag:
- project
Id String - Unique identifier of the associated project. Changing this creates a new token. Retrieved from the selectel.VpcProjectV2 resource. Learn more about Projects.
- craas
Token StringV2Id - expires
At String - Token lifetime in the RFC3339 timestamp format, for example,
2025-03-09T12:58:49Z. Changing this updates the token. Required whenis_setistrue. - name String
- Token name. Changing this updates the token.
- registry
Ids List<String> - Unique identifier of the specific registry access to which is granted. Changing this updates the token. Required when
all _registriesisfalse. To get the registry ID, in the Control panel, go to Products ⟶ Container Registry ⟶ copy the ID under the registry name.
- all
Registries boolean Specifies if the token provides access to all registries. Changing this updates the token.
Boolean flag:
- is
Set boolean Specifies if the token lifetime is limited. Changing this updates the token.
Boolean flag:
- mode
Rw boolean Specifies the scope of access to registries. Changing this updates the token.
Boolean flag:
- project
Id string - Unique identifier of the associated project. Changing this creates a new token. Retrieved from the selectel.VpcProjectV2 resource. Learn more about Projects.
- craas
Token stringV2Id - expires
At string - Token lifetime in the RFC3339 timestamp format, for example,
2025-03-09T12:58:49Z. Changing this updates the token. Required whenis_setistrue. - name string
- Token name. Changing this updates the token.
- registry
Ids string[] - Unique identifier of the specific registry access to which is granted. Changing this updates the token. Required when
all _registriesisfalse. To get the registry ID, in the Control panel, go to Products ⟶ Container Registry ⟶ copy the ID under the registry name.
- all_
registries bool Specifies if the token provides access to all registries. Changing this updates the token.
Boolean flag:
- is_
set bool Specifies if the token lifetime is limited. Changing this updates the token.
Boolean flag:
- mode_
rw bool Specifies the scope of access to registries. Changing this updates the token.
Boolean flag:
- project_
id str - Unique identifier of the associated project. Changing this creates a new token. Retrieved from the selectel.VpcProjectV2 resource. Learn more about Projects.
- craas_
token_ strv2_ id - expires_
at str - Token lifetime in the RFC3339 timestamp format, for example,
2025-03-09T12:58:49Z. Changing this updates the token. Required whenis_setistrue. - name str
- Token name. Changing this updates the token.
- registry_
ids Sequence[str] - Unique identifier of the specific registry access to which is granted. Changing this updates the token. Required when
all _registriesisfalse. To get the registry ID, in the Control panel, go to Products ⟶ Container Registry ⟶ copy the ID under the registry name.
- all
Registries Boolean Specifies if the token provides access to all registries. Changing this updates the token.
Boolean flag:
- is
Set Boolean Specifies if the token lifetime is limited. Changing this updates the token.
Boolean flag:
- mode
Rw Boolean Specifies the scope of access to registries. Changing this updates the token.
Boolean flag:
- project
Id String - Unique identifier of the associated project. Changing this creates a new token. Retrieved from the selectel.VpcProjectV2 resource. Learn more about Projects.
- craas
Token StringV2Id - expires
At String - Token lifetime in the RFC3339 timestamp format, for example,
2025-03-09T12:58:49Z. Changing this updates the token. Required whenis_setistrue. - name String
- Token name. Changing this updates the token.
- registry
Ids List<String> - Unique identifier of the specific registry access to which is granted. Changing this updates the token. Required when
all _registriesisfalse. To get the registry ID, in the Control panel, go to Products ⟶ Container Registry ⟶ copy the ID under the registry name.
Outputs
All input properties are implicitly available as output properties. Additionally, the CraasTokenV2 resource produces the following output properties:
Look up Existing CraasTokenV2 Resource
Get an existing CraasTokenV2 resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: CraasTokenV2State, opts?: CustomResourceOptions): CraasTokenV2@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
all_registries: Optional[bool] = None,
craas_token_v2_id: Optional[str] = None,
expires_at: Optional[str] = None,
is_set: Optional[bool] = None,
mode_rw: Optional[bool] = None,
name: Optional[str] = None,
project_id: Optional[str] = None,
registry_ids: Optional[Sequence[str]] = None,
token: Optional[str] = None,
username: Optional[str] = None) -> CraasTokenV2func GetCraasTokenV2(ctx *Context, name string, id IDInput, state *CraasTokenV2State, opts ...ResourceOption) (*CraasTokenV2, error)public static CraasTokenV2 Get(string name, Input<string> id, CraasTokenV2State? state, CustomResourceOptions? opts = null)public static CraasTokenV2 get(String name, Output<String> id, CraasTokenV2State state, CustomResourceOptions options)resources: _: type: selectel:CraasTokenV2 get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- All
Registries bool Specifies if the token provides access to all registries. Changing this updates the token.
Boolean flag:
- Craas
Token stringV2Id - Expires
At string - Token lifetime in the RFC3339 timestamp format, for example,
2025-03-09T12:58:49Z. Changing this updates the token. Required whenis_setistrue. - Is
Set bool Specifies if the token lifetime is limited. Changing this updates the token.
Boolean flag:
- Mode
Rw bool Specifies the scope of access to registries. Changing this updates the token.
Boolean flag:
- Name string
- Token name. Changing this updates the token.
- Project
Id string - Unique identifier of the associated project. Changing this creates a new token. Retrieved from the selectel.VpcProjectV2 resource. Learn more about Projects.
- Registry
Ids List<string> - Unique identifier of the specific registry access to which is granted. Changing this updates the token. Required when
all _registriesisfalse. To get the registry ID, in the Control panel, go to Products ⟶ Container Registry ⟶ copy the ID under the registry name. - Token string
- (Sensitive) Token to access Container Registry.
- Username string
- (Sensitive) Username to access Container Registry.
- All
Registries bool Specifies if the token provides access to all registries. Changing this updates the token.
Boolean flag:
- Craas
Token stringV2Id - Expires
At string - Token lifetime in the RFC3339 timestamp format, for example,
2025-03-09T12:58:49Z. Changing this updates the token. Required whenis_setistrue. - Is
Set bool Specifies if the token lifetime is limited. Changing this updates the token.
Boolean flag:
- Mode
Rw bool Specifies the scope of access to registries. Changing this updates the token.
Boolean flag:
- Name string
- Token name. Changing this updates the token.
- Project
Id string - Unique identifier of the associated project. Changing this creates a new token. Retrieved from the selectel.VpcProjectV2 resource. Learn more about Projects.
- Registry
Ids []string - Unique identifier of the specific registry access to which is granted. Changing this updates the token. Required when
all _registriesisfalse. To get the registry ID, in the Control panel, go to Products ⟶ Container Registry ⟶ copy the ID under the registry name. - Token string
- (Sensitive) Token to access Container Registry.
- Username string
- (Sensitive) Username to access Container Registry.
- all
Registries Boolean Specifies if the token provides access to all registries. Changing this updates the token.
Boolean flag:
- craas
Token StringV2Id - expires
At String - Token lifetime in the RFC3339 timestamp format, for example,
2025-03-09T12:58:49Z. Changing this updates the token. Required whenis_setistrue. - is
Set Boolean Specifies if the token lifetime is limited. Changing this updates the token.
Boolean flag:
- mode
Rw Boolean Specifies the scope of access to registries. Changing this updates the token.
Boolean flag:
- name String
- Token name. Changing this updates the token.
- project
Id String - Unique identifier of the associated project. Changing this creates a new token. Retrieved from the selectel.VpcProjectV2 resource. Learn more about Projects.
- registry
Ids List<String> - Unique identifier of the specific registry access to which is granted. Changing this updates the token. Required when
all _registriesisfalse. To get the registry ID, in the Control panel, go to Products ⟶ Container Registry ⟶ copy the ID under the registry name. - token String
- (Sensitive) Token to access Container Registry.
- username String
- (Sensitive) Username to access Container Registry.
- all
Registries boolean Specifies if the token provides access to all registries. Changing this updates the token.
Boolean flag:
- craas
Token stringV2Id - expires
At string - Token lifetime in the RFC3339 timestamp format, for example,
2025-03-09T12:58:49Z. Changing this updates the token. Required whenis_setistrue. - is
Set boolean Specifies if the token lifetime is limited. Changing this updates the token.
Boolean flag:
- mode
Rw boolean Specifies the scope of access to registries. Changing this updates the token.
Boolean flag:
- name string
- Token name. Changing this updates the token.
- project
Id string - Unique identifier of the associated project. Changing this creates a new token. Retrieved from the selectel.VpcProjectV2 resource. Learn more about Projects.
- registry
Ids string[] - Unique identifier of the specific registry access to which is granted. Changing this updates the token. Required when
all _registriesisfalse. To get the registry ID, in the Control panel, go to Products ⟶ Container Registry ⟶ copy the ID under the registry name. - token string
- (Sensitive) Token to access Container Registry.
- username string
- (Sensitive) Username to access Container Registry.
- all_
registries bool Specifies if the token provides access to all registries. Changing this updates the token.
Boolean flag:
- craas_
token_ strv2_ id - expires_
at str - Token lifetime in the RFC3339 timestamp format, for example,
2025-03-09T12:58:49Z. Changing this updates the token. Required whenis_setistrue. - is_
set bool Specifies if the token lifetime is limited. Changing this updates the token.
Boolean flag:
- mode_
rw bool Specifies the scope of access to registries. Changing this updates the token.
Boolean flag:
- name str
- Token name. Changing this updates the token.
- project_
id str - Unique identifier of the associated project. Changing this creates a new token. Retrieved from the selectel.VpcProjectV2 resource. Learn more about Projects.
- registry_
ids Sequence[str] - Unique identifier of the specific registry access to which is granted. Changing this updates the token. Required when
all _registriesisfalse. To get the registry ID, in the Control panel, go to Products ⟶ Container Registry ⟶ copy the ID under the registry name. - token str
- (Sensitive) Token to access Container Registry.
- username str
- (Sensitive) Username to access Container Registry.
- all
Registries Boolean Specifies if the token provides access to all registries. Changing this updates the token.
Boolean flag:
- craas
Token StringV2Id - expires
At String - Token lifetime in the RFC3339 timestamp format, for example,
2025-03-09T12:58:49Z. Changing this updates the token. Required whenis_setistrue. - is
Set Boolean Specifies if the token lifetime is limited. Changing this updates the token.
Boolean flag:
- mode
Rw Boolean Specifies the scope of access to registries. Changing this updates the token.
Boolean flag:
- name String
- Token name. Changing this updates the token.
- project
Id String - Unique identifier of the associated project. Changing this creates a new token. Retrieved from the selectel.VpcProjectV2 resource. Learn more about Projects.
- registry
Ids List<String> - Unique identifier of the specific registry access to which is granted. Changing this updates the token. Required when
all _registriesisfalse. To get the registry ID, in the Control panel, go to Products ⟶ Container Registry ⟶ copy the ID under the registry name. - token String
- (Sensitive) Token to access Container Registry.
- username String
- (Sensitive) Username to access Container Registry.
Package Details
- Repository
- selectel selectel/terraform-provider-selectel
- License
- Notes
- This Pulumi package is based on the
selectelTerraform Provider.
