scaleway.iam.ApiKey
Explore with Pulumi AI
Creates and manages Scaleway API Keys. For more information, refer to the IAM API documentation.
Example Usage
With application
import * as pulumi from "@pulumi/pulumi";
import * as scaleway from "@pulumiverse/scaleway";
const ciCd = new scaleway.iam.Application("ci_cd", {name: "My application"});
const main = new scaleway.iam.ApiKey("main", {
applicationId: mainScalewayIamApplication.id,
description: "a description",
});
import pulumi
import pulumiverse_scaleway as scaleway
ci_cd = scaleway.iam.Application("ci_cd", name="My application")
main = scaleway.iam.ApiKey("main",
application_id=main_scaleway_iam_application["id"],
description="a description")
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/iam"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := iam.NewApplication(ctx, "ci_cd", &iam.ApplicationArgs{
Name: pulumi.String("My application"),
})
if err != nil {
return err
}
_, err = iam.NewApiKey(ctx, "main", &iam.ApiKeyArgs{
ApplicationId: pulumi.Any(mainScalewayIamApplication.Id),
Description: pulumi.String("a description"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scaleway = Pulumiverse.Scaleway;
return await Deployment.RunAsync(() =>
{
var ciCd = new Scaleway.Iam.Application("ci_cd", new()
{
Name = "My application",
});
var main = new Scaleway.Iam.ApiKey("main", new()
{
ApplicationId = mainScalewayIamApplication.Id,
Description = "a description",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scaleway.iam.Application;
import com.pulumi.scaleway.iam.ApplicationArgs;
import com.pulumi.scaleway.iam.ApiKey;
import com.pulumi.scaleway.iam.ApiKeyArgs;
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 ciCd = new Application("ciCd", ApplicationArgs.builder()
.name("My application")
.build());
var main = new ApiKey("main", ApiKeyArgs.builder()
.applicationId(mainScalewayIamApplication.id())
.description("a description")
.build());
}
}
resources:
ciCd:
type: scaleway:iam:Application
name: ci_cd
properties:
name: My application
main:
type: scaleway:iam:ApiKey
properties:
applicationId: ${mainScalewayIamApplication.id}
description: a description
With user
import * as pulumi from "@pulumi/pulumi";
import * as scaleway from "@pulumiverse/scaleway";
const main = new scaleway.iam.User("main", {email: "test@test.com"});
const mainApiKey = new scaleway.iam.ApiKey("main", {
userId: main.id,
description: "a description",
});
import pulumi
import pulumiverse_scaleway as scaleway
main = scaleway.iam.User("main", email="test@test.com")
main_api_key = scaleway.iam.ApiKey("main",
user_id=main.id,
description="a description")
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/iam"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
main, err := iam.NewUser(ctx, "main", &iam.UserArgs{
Email: pulumi.String("test@test.com"),
})
if err != nil {
return err
}
_, err = iam.NewApiKey(ctx, "main", &iam.ApiKeyArgs{
UserId: main.ID(),
Description: pulumi.String("a description"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scaleway = Pulumiverse.Scaleway;
return await Deployment.RunAsync(() =>
{
var main = new Scaleway.Iam.User("main", new()
{
Email = "test@test.com",
});
var mainApiKey = new Scaleway.Iam.ApiKey("main", new()
{
UserId = main.Id,
Description = "a description",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scaleway.iam.User;
import com.pulumi.scaleway.iam.UserArgs;
import com.pulumi.scaleway.iam.ApiKey;
import com.pulumi.scaleway.iam.ApiKeyArgs;
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 main = new User("main", UserArgs.builder()
.email("test@test.com")
.build());
var mainApiKey = new ApiKey("mainApiKey", ApiKeyArgs.builder()
.userId(main.id())
.description("a description")
.build());
}
}
resources:
main:
type: scaleway:iam:User
properties:
email: test@test.com
mainApiKey:
type: scaleway:iam:ApiKey
name: main
properties:
userId: ${main.id}
description: a description
With expiration
import * as pulumi from "@pulumi/pulumi";
import * as scaleway from "@pulumiverse/scaleway";
import * as time from "@pulumi/time";
const rotateAfterAYear = new time.index.Rotating("rotate_after_a_year", {rotationYears: 1});
const main = new scaleway.iam.ApiKey("main", {
applicationId: mainScalewayIamApplication.id,
expiresAt: rotateAfterAYear.rotationRfc3339,
});
import pulumi
import pulumi_time as time
import pulumiverse_scaleway as scaleway
rotate_after_a_year = time.index.Rotating("rotate_after_a_year", rotation_years=1)
main = scaleway.iam.ApiKey("main",
application_id=main_scaleway_iam_application["id"],
expires_at=rotate_after_a_year["rotationRfc3339"])
package main
import (
"github.com/pulumi/pulumi-time/sdk/go/time"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/iam"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
rotateAfterAYear, err := time.NewRotating(ctx, "rotate_after_a_year", &time.RotatingArgs{
RotationYears: 1,
})
if err != nil {
return err
}
_, err = iam.NewApiKey(ctx, "main", &iam.ApiKeyArgs{
ApplicationId: pulumi.Any(mainScalewayIamApplication.Id),
ExpiresAt: rotateAfterAYear.RotationRfc3339,
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scaleway = Pulumiverse.Scaleway;
using Time = Pulumi.Time;
return await Deployment.RunAsync(() =>
{
var rotateAfterAYear = new Time.Index.Rotating("rotate_after_a_year", new()
{
RotationYears = 1,
});
var main = new Scaleway.Iam.ApiKey("main", new()
{
ApplicationId = mainScalewayIamApplication.Id,
ExpiresAt = rotateAfterAYear.RotationRfc3339,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.time.rotating;
import com.pulumi.time.RotatingArgs;
import com.pulumi.scaleway.iam.ApiKey;
import com.pulumi.scaleway.iam.ApiKeyArgs;
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 rotateAfterAYear = new Rotating("rotateAfterAYear", RotatingArgs.builder()
.rotationYears(1)
.build());
var main = new ApiKey("main", ApiKeyArgs.builder()
.applicationId(mainScalewayIamApplication.id())
.expiresAt(rotateAfterAYear.rotationRfc3339())
.build());
}
}
resources:
rotateAfterAYear:
type: time:rotating
name: rotate_after_a_year
properties:
rotationYears: 1
main:
type: scaleway:iam:ApiKey
properties:
applicationId: ${mainScalewayIamApplication.id}
expiresAt: ${rotateAfterAYear.rotationRfc3339}
Create ApiKey Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ApiKey(name: string, args?: ApiKeyArgs, opts?: CustomResourceOptions);
@overload
def ApiKey(resource_name: str,
args: Optional[ApiKeyArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ApiKey(resource_name: str,
opts: Optional[ResourceOptions] = None,
application_id: Optional[str] = None,
default_project_id: Optional[str] = None,
description: Optional[str] = None,
expires_at: Optional[str] = None,
user_id: Optional[str] = None)
func NewApiKey(ctx *Context, name string, args *ApiKeyArgs, opts ...ResourceOption) (*ApiKey, error)
public ApiKey(string name, ApiKeyArgs? args = null, CustomResourceOptions? opts = null)
public ApiKey(String name, ApiKeyArgs args)
public ApiKey(String name, ApiKeyArgs args, CustomResourceOptions options)
type: scaleway:iam:ApiKey
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 ApiKeyArgs
- 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 ApiKeyArgs
- 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 ApiKeyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ApiKeyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ApiKeyArgs
- 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 apiKeyResource = new Scaleway.Iam.ApiKey("apiKeyResource", new()
{
ApplicationId = "string",
DefaultProjectId = "string",
Description = "string",
ExpiresAt = "string",
UserId = "string",
});
example, err := iam.NewApiKey(ctx, "apiKeyResource", &iam.ApiKeyArgs{
ApplicationId: pulumi.String("string"),
DefaultProjectId: pulumi.String("string"),
Description: pulumi.String("string"),
ExpiresAt: pulumi.String("string"),
UserId: pulumi.String("string"),
})
var apiKeyResource = new ApiKey("apiKeyResource", ApiKeyArgs.builder()
.applicationId("string")
.defaultProjectId("string")
.description("string")
.expiresAt("string")
.userId("string")
.build());
api_key_resource = scaleway.iam.ApiKey("apiKeyResource",
application_id="string",
default_project_id="string",
description="string",
expires_at="string",
user_id="string")
const apiKeyResource = new scaleway.iam.ApiKey("apiKeyResource", {
applicationId: "string",
defaultProjectId: "string",
description: "string",
expiresAt: "string",
userId: "string",
});
type: scaleway:iam:ApiKey
properties:
applicationId: string
defaultProjectId: string
description: string
expiresAt: string
userId: string
ApiKey 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 ApiKey resource accepts the following input properties:
- Application
Id string - ID of the application attached to the API key.
- Default
Project stringId - The default Project ID to use with Object Storage.
- Description string
- The description of the API key.
- Expires
At string - The date and time of the expiration of the IAM API key. Please note that in case of any changes, the resource will be recreated.
- User
Id string ID of the user attached to the API key.
Note You must specify at least one:
application_id
and/oruser_id
.
- Application
Id string - ID of the application attached to the API key.
- Default
Project stringId - The default Project ID to use with Object Storage.
- Description string
- The description of the API key.
- Expires
At string - The date and time of the expiration of the IAM API key. Please note that in case of any changes, the resource will be recreated.
- User
Id string ID of the user attached to the API key.
Note You must specify at least one:
application_id
and/oruser_id
.
- application
Id String - ID of the application attached to the API key.
- default
Project StringId - The default Project ID to use with Object Storage.
- description String
- The description of the API key.
- expires
At String - The date and time of the expiration of the IAM API key. Please note that in case of any changes, the resource will be recreated.
- user
Id String ID of the user attached to the API key.
Note You must specify at least one:
application_id
and/oruser_id
.
- application
Id string - ID of the application attached to the API key.
- default
Project stringId - The default Project ID to use with Object Storage.
- description string
- The description of the API key.
- expires
At string - The date and time of the expiration of the IAM API key. Please note that in case of any changes, the resource will be recreated.
- user
Id string ID of the user attached to the API key.
Note You must specify at least one:
application_id
and/oruser_id
.
- application_
id str - ID of the application attached to the API key.
- default_
project_ strid - The default Project ID to use with Object Storage.
- description str
- The description of the API key.
- expires_
at str - The date and time of the expiration of the IAM API key. Please note that in case of any changes, the resource will be recreated.
- user_
id str ID of the user attached to the API key.
Note You must specify at least one:
application_id
and/oruser_id
.
- application
Id String - ID of the application attached to the API key.
- default
Project StringId - The default Project ID to use with Object Storage.
- description String
- The description of the API key.
- expires
At String - The date and time of the expiration of the IAM API key. Please note that in case of any changes, the resource will be recreated.
- user
Id String ID of the user attached to the API key.
Note You must specify at least one:
application_id
and/oruser_id
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ApiKey resource produces the following output properties:
- Access
Key string - The access key of the IAM API key.
- Created
At string - The date and time of the creation of the IAM API key.
- Creation
Ip string - The IP Address of the device which created the API key.
- Editable bool
- Whether the IAM API key is editable.
- Id string
- The provider-assigned unique ID for this managed resource.
- Secret
Key string - The secret Key of the IAM API key.
- Updated
At string - The date and time of the last update of the IAM API key.
- Access
Key string - The access key of the IAM API key.
- Created
At string - The date and time of the creation of the IAM API key.
- Creation
Ip string - The IP Address of the device which created the API key.
- Editable bool
- Whether the IAM API key is editable.
- Id string
- The provider-assigned unique ID for this managed resource.
- Secret
Key string - The secret Key of the IAM API key.
- Updated
At string - The date and time of the last update of the IAM API key.
- access
Key String - The access key of the IAM API key.
- created
At String - The date and time of the creation of the IAM API key.
- creation
Ip String - The IP Address of the device which created the API key.
- editable Boolean
- Whether the IAM API key is editable.
- id String
- The provider-assigned unique ID for this managed resource.
- secret
Key String - The secret Key of the IAM API key.
- updated
At String - The date and time of the last update of the IAM API key.
- access
Key string - The access key of the IAM API key.
- created
At string - The date and time of the creation of the IAM API key.
- creation
Ip string - The IP Address of the device which created the API key.
- editable boolean
- Whether the IAM API key is editable.
- id string
- The provider-assigned unique ID for this managed resource.
- secret
Key string - The secret Key of the IAM API key.
- updated
At string - The date and time of the last update of the IAM API key.
- access_
key str - The access key of the IAM API key.
- created_
at str - The date and time of the creation of the IAM API key.
- creation_
ip str - The IP Address of the device which created the API key.
- editable bool
- Whether the IAM API key is editable.
- id str
- The provider-assigned unique ID for this managed resource.
- secret_
key str - The secret Key of the IAM API key.
- updated_
at str - The date and time of the last update of the IAM API key.
- access
Key String - The access key of the IAM API key.
- created
At String - The date and time of the creation of the IAM API key.
- creation
Ip String - The IP Address of the device which created the API key.
- editable Boolean
- Whether the IAM API key is editable.
- id String
- The provider-assigned unique ID for this managed resource.
- secret
Key String - The secret Key of the IAM API key.
- updated
At String - The date and time of the last update of the IAM API key.
Look up Existing ApiKey Resource
Get an existing ApiKey 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?: ApiKeyState, opts?: CustomResourceOptions): ApiKey
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
access_key: Optional[str] = None,
application_id: Optional[str] = None,
created_at: Optional[str] = None,
creation_ip: Optional[str] = None,
default_project_id: Optional[str] = None,
description: Optional[str] = None,
editable: Optional[bool] = None,
expires_at: Optional[str] = None,
secret_key: Optional[str] = None,
updated_at: Optional[str] = None,
user_id: Optional[str] = None) -> ApiKey
func GetApiKey(ctx *Context, name string, id IDInput, state *ApiKeyState, opts ...ResourceOption) (*ApiKey, error)
public static ApiKey Get(string name, Input<string> id, ApiKeyState? state, CustomResourceOptions? opts = null)
public static ApiKey get(String name, Output<String> id, ApiKeyState state, CustomResourceOptions options)
resources: _: type: scaleway:iam:ApiKey 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.
- Access
Key string - The access key of the IAM API key.
- Application
Id string - ID of the application attached to the API key.
- Created
At string - The date and time of the creation of the IAM API key.
- Creation
Ip string - The IP Address of the device which created the API key.
- Default
Project stringId - The default Project ID to use with Object Storage.
- Description string
- The description of the API key.
- Editable bool
- Whether the IAM API key is editable.
- Expires
At string - The date and time of the expiration of the IAM API key. Please note that in case of any changes, the resource will be recreated.
- Secret
Key string - The secret Key of the IAM API key.
- Updated
At string - The date and time of the last update of the IAM API key.
- User
Id string ID of the user attached to the API key.
Note You must specify at least one:
application_id
and/oruser_id
.
- Access
Key string - The access key of the IAM API key.
- Application
Id string - ID of the application attached to the API key.
- Created
At string - The date and time of the creation of the IAM API key.
- Creation
Ip string - The IP Address of the device which created the API key.
- Default
Project stringId - The default Project ID to use with Object Storage.
- Description string
- The description of the API key.
- Editable bool
- Whether the IAM API key is editable.
- Expires
At string - The date and time of the expiration of the IAM API key. Please note that in case of any changes, the resource will be recreated.
- Secret
Key string - The secret Key of the IAM API key.
- Updated
At string - The date and time of the last update of the IAM API key.
- User
Id string ID of the user attached to the API key.
Note You must specify at least one:
application_id
and/oruser_id
.
- access
Key String - The access key of the IAM API key.
- application
Id String - ID of the application attached to the API key.
- created
At String - The date and time of the creation of the IAM API key.
- creation
Ip String - The IP Address of the device which created the API key.
- default
Project StringId - The default Project ID to use with Object Storage.
- description String
- The description of the API key.
- editable Boolean
- Whether the IAM API key is editable.
- expires
At String - The date and time of the expiration of the IAM API key. Please note that in case of any changes, the resource will be recreated.
- secret
Key String - The secret Key of the IAM API key.
- updated
At String - The date and time of the last update of the IAM API key.
- user
Id String ID of the user attached to the API key.
Note You must specify at least one:
application_id
and/oruser_id
.
- access
Key string - The access key of the IAM API key.
- application
Id string - ID of the application attached to the API key.
- created
At string - The date and time of the creation of the IAM API key.
- creation
Ip string - The IP Address of the device which created the API key.
- default
Project stringId - The default Project ID to use with Object Storage.
- description string
- The description of the API key.
- editable boolean
- Whether the IAM API key is editable.
- expires
At string - The date and time of the expiration of the IAM API key. Please note that in case of any changes, the resource will be recreated.
- secret
Key string - The secret Key of the IAM API key.
- updated
At string - The date and time of the last update of the IAM API key.
- user
Id string ID of the user attached to the API key.
Note You must specify at least one:
application_id
and/oruser_id
.
- access_
key str - The access key of the IAM API key.
- application_
id str - ID of the application attached to the API key.
- created_
at str - The date and time of the creation of the IAM API key.
- creation_
ip str - The IP Address of the device which created the API key.
- default_
project_ strid - The default Project ID to use with Object Storage.
- description str
- The description of the API key.
- editable bool
- Whether the IAM API key is editable.
- expires_
at str - The date and time of the expiration of the IAM API key. Please note that in case of any changes, the resource will be recreated.
- secret_
key str - The secret Key of the IAM API key.
- updated_
at str - The date and time of the last update of the IAM API key.
- user_
id str ID of the user attached to the API key.
Note You must specify at least one:
application_id
and/oruser_id
.
- access
Key String - The access key of the IAM API key.
- application
Id String - ID of the application attached to the API key.
- created
At String - The date and time of the creation of the IAM API key.
- creation
Ip String - The IP Address of the device which created the API key.
- default
Project StringId - The default Project ID to use with Object Storage.
- description String
- The description of the API key.
- editable Boolean
- Whether the IAM API key is editable.
- expires
At String - The date and time of the expiration of the IAM API key. Please note that in case of any changes, the resource will be recreated.
- secret
Key String - The secret Key of the IAM API key.
- updated
At String - The date and time of the last update of the IAM API key.
- user
Id String ID of the user attached to the API key.
Note You must specify at least one:
application_id
and/oruser_id
.
Import
Api keys can be imported using the {id}
, e.g.
bash
$ pulumi import scaleway:iam/apiKey:ApiKey main 11111111111111111111
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- scaleway pulumiverse/pulumi-scaleway
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scaleway
Terraform Provider.