Describe what happened
Refer to assumeRoleWithOidc Configuration Block.
export ALIBABA_CLOUD_OIDC_TOKEN_FILE=/tmp/oidc_token # this file stored the oidc token
export ALIBABA_CLOUD_ROLE_ARN="acs:ram::***:role/***"
export ALIBABA_CLOUD_OIDC_PROVIDER_ARN="acs:ram::***:oidc-provider/***"
pulumi preview
It seems that pulumi doesn't read the env variables at all:
error: configuring Terraform Alibaba Cloud Provider: no valid credential sources for Terraform Alibaba Cloud Provider found.
Sample program
name: configuration-example
runtime: nodejs
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const config = new pulumi.Config();
const name = config.get("name") || "pulumi-example";
const default = alicloud.getZones({
availableDiskCategory: "cloud_efficiency",
availableResourceCreation: "VSwitch",
});
// Create a new ECS instance for VPC
const vpc = new alicloud.vpc.Network("vpc", {
vpcName: name,
cidrBlock: "172.16.0.0/16",
});
const vswitch = new alicloud.vpc.Switch("vswitch", {
vpcId: vpc.id,
cidrBlock: "172.16.0.0/24",
zoneId: _default.then(_default => _default.zones?.[0]?.id),
vswitchName: name,
});
// Create a new Security in a VPC
const group = new alicloud.ecs.SecurityGroup("group", {
name: name,
description: "foo",
vpcId: vpc.id,
});
// Create a kms to encrypt the disk
const key = new alicloud.kms.Key("key", {
description: "Hello KMS",
pendingWindowInDays: 7,
status: "Enabled",
});
const instance = new alicloud.ecs.Instance("instance", {
availabilityZone: _default.then(_default => _default.zones?.[0]?.id),
securityGroups: [group].map(__item => __item.id),
instanceType: "ecs.n4.large",
systemDiskCategory: "cloud_efficiency",
systemDiskName: name,
systemDiskDescription: "system_disk_description",
imageId: "ubuntu_18_04_64_20G_alibase_20190624.vhd",
instanceName: name,
vswitchId: vswitch.id,
internetMaxBandwidthOut: 10,
dataDisks: [{
name: "data-disk",
size: 20,
category: "cloud_efficiency",
description: "disk-description",
encrypted: true,
kmsKeyId: key.id,
}],
});
Log output
No response
Affected Resource(s)
No response
Output of pulumi about
CLI
Version 3.72.2
Go Version go1.20.5
Go Compiler gc
Plugins
NAME VERSION
nodejs unknown
Host
OS darwin
Version 14.1.1
Arch arm64
This project is written in nodejs: executable='/usr/local/bin/node' version='v20.14.0'
Additional context
No response
Contributing
Vote on this issue by adding a 👍 reaction.
To contribute a fix for this issue, leave a comment (and link to your pull request, if you've opened one already).
Describe what happened
Refer to assumeRoleWithOidc Configuration Block.
It seems that pulumi doesn't read the env variables at all:
Sample program
Log output
No response
Affected Resource(s)
No response
Output of
pulumi aboutAdditional context
No response
Contributing
Vote on this issue by adding a 👍 reaction.
To contribute a fix for this issue, leave a comment (and link to your pull request, if you've opened one already).