Hmac Key Args
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:
How-to Guides
Warning: All arguments including the
secret
value will be stored in the raw state as plain-text. On import, thesecret
value will not be retrieved. Warning: All arguments includingsecret
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());
}
}
Content copied to clipboard
Import
HmacKey can be imported using any of these accepted formats
$ pulumi import gcp:storage/hmacKey:HmacKey default projects/{{project}}/hmacKeys/{{access_id}}
Content copied to clipboard
$ pulumi import gcp:storage/hmacKey:HmacKey default {{project}}/{{access_id}}
Content copied to clipboard
$ pulumi import gcp:storage/hmacKey:HmacKey default {{access_id}}
Content copied to clipboard