HmacKeyArgs

data class HmacKeyArgs(val project: Output<String>? = null, val serviceAccountEmail: Output<String>? = null, val state: Output<String>? = null) : ConvertibleToJava<HmacKeyArgs>

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}}

Constructors

Link copied to clipboard
constructor(project: Output<String>? = null, serviceAccountEmail: Output<String>? = null, state: Output<String>? = null)

Properties

Link copied to clipboard
val project: Output<String>? = null

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 serviceAccountEmail: Output<String>? = null

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

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

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

Functions

Link copied to clipboard
open override fun toJava(): HmacKeyArgs