HmacKey

class HmacKey : KotlinCustomResource

The hmacKeys resource represents an HMAC key within Cloud Storage. The resource consists of a secret and HMAC key metadata. HMAC keys can be used as credentials for service accounts. To get more information about HmacKey, see:

Warning: All arguments including the secret value will be stored in the raw state as plain-text. On import, the secret value will not be retrieved. Warning: All arguments including secret will be stored in the raw state as plain-text.

Example Usage

Storage Hmac Key

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.serviceAccount.Account;
import com.pulumi.gcp.serviceAccount.AccountArgs;
import com.pulumi.gcp.storage.HmacKey;
import com.pulumi.gcp.storage.HmacKeyArgs;
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 serviceAccount = new Account("serviceAccount", AccountArgs.builder()
.accountId("my-svc-acc")
.build());
var key = new HmacKey("key", HmacKeyArgs.builder()
.serviceAccountEmail(serviceAccount.email())
.build());
}
}

Import

HmacKey can be imported using any of these accepted formats

$ pulumi import gcp:storage/hmacKey:HmacKey default projects/{{project}}/hmacKeys/{{access_id}}
$ pulumi import gcp:storage/hmacKey:HmacKey default {{project}}/{{access_id}}
$ pulumi import gcp:storage/hmacKey:HmacKey default {{access_id}}

Properties

Link copied to clipboard
val accessId: Output<String>

The access ID of the HMAC Key.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val project: Output<String>

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val secret: Output<String>

HMAC secret key material. Note: This property is sensitive and will not be displayed in the plan.

Link copied to clipboard

The email address of the key's associated service account.

Link copied to clipboard
val state: Output<String>?

The state of the key. Can be set to one of ACTIVE, INACTIVE. Default value is ACTIVE. Possible values are: ACTIVE, INACTIVE.

Link copied to clipboard
val timeCreated: Output<String>

'The creation time of the HMAC key in RFC 3339 format. '

Link copied to clipboard
val updated: Output<String>

'The last modification time of the HMAC key metadata in RFC 3339 format.'

Link copied to clipboard
val urn: Output<String>