pulumi / pulumi-pulumiservice

https://pulumi.com
Apache License 2.0
13 stars 6 forks source link

Support for short-lived access tokens #393

Open smithrobs opened 1 month ago

smithrobs commented 1 month ago

Hello!

Issue details

It would be nice to have support for short-lived access tokens.

Example:

import * as service from "@pulumi/pulumiservice";

const accessToken = new service.AccessToken("token", {
    description: "example-accesstoken",
    expires: 1724375054 // (GMT): Friday, August 23, 2024 1:04:14 AM
});