ancient-eve-13947
08/05/2021, 1:28 PMrapid-iron-52715
08/05/2021, 3:00 PMrapid-iron-52715
08/05/2021, 3:18 PMrapid-iron-52715
08/05/2021, 3:18 PMrapid-iron-52715
08/05/2021, 3:19 PMrapid-iron-52715
08/05/2021, 3:19 PMred-area-47037
08/05/2021, 4:38 PMpulumi refresh
or pulumi up
when trying to unmarshal Cloudflare CertificatePack. I wanted to create an issue but someone beat me to it https://github.com/pulumi/pulumi-cloudflare/issues/167. Maybe someone has an idea what caused this bug and if there is a workaround / fix.powerful-continent-32307
08/06/2021, 1:53 AMfast-florist-41572
08/06/2021, 11:48 AMfast-florist-41572
08/06/2021, 11:48 AMfast-florist-41572
08/06/2021, 11:52 AMworried-hydrogen-32482
08/06/2021, 4:12 PMException: invoke of azure-native:datafactory:listIntegrationRuntimeAuthKeys failed: invocation of azure-native:datafactory:listIntegrationRuntimeAuthKeys returned an error: request failed /subscriptions/xxxxxx/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}/integrationRuntimes/{integrationRuntimeName}/listAuthKeys: autorest/azure: Service returned an error. Status=404 Code="ResourceGroupNotFound" Message="Resource group '{resourceGroupName}' could not be found.
Here is a sample code:
from pulumi import export
from pulumi_azure_native import resources, datafactory
# Resource Group
resource_group = resources.ResourceGroup(
"self-hosted-runtime", resource_group_name="self-hosted-runtime")
# Data Factory
adf = datafactory.factory.Factory(
"self-hosted-runtime",
factory_name="self-hosted-runtime",
resource_group_name=resource_group.name
)
# Self Hosted Runtime
shr = datafactory.IntegrationRuntime(
"self-hosted-runtime",
integration_runtime_name="self-hosted-runetime",
factory_name=adf.name,
resource_group_name=resource_group.name,
properties=datafactory.SelfHostedIntegrationRuntimeArgs(
type="SelfHosted",
)
)
# Self Hosted Runtime Auth Keys
shr_auth_keys = datafactory.list_integration_runtime_auth_keys(
adf.name, shr.name, resource_group.name)
export("shr", shr)
export("shr-auth-keys", shr_auth_keys)
cuddly-wire-39431
08/06/2021, 7:33 PMlate-energy-66663
08/06/2021, 8:45 PMearly-furniture-5806
08/07/2021, 8:54 PMnutritious-australia-90040
08/09/2021, 6:29 AMAzure.Core.GetSubscription.InvokeAsync()
to get the subscription id. However, we are shifting to Azure Native nuget package and unable to located any similar method. Can someone help me regarding this?busy-honey-73811
08/09/2021, 9:12 AMupdate failed with AccessDenied: Access Denied
(from app.pulumi.com) while trying to update stacks (starting since this morning)?nice-alarm-18551
08/09/2021, 9:27 AMelegant-monkey-56019
08/09/2021, 11:37 AMpowerful-continent-32307
08/09/2021, 12:19 PMconst vpc = new aws.ec2.Vpc("my-vpc", {
cidrBlock: `172.99.0.0/16`,
});
This doesn't create the name in aws consoledelightful-xylophone-3967
08/09/2021, 12:22 PMmany-spring-73557
08/09/2021, 8:35 PMpulumi up
create a single resource? There is the -t
flag but my understanding is that the resource doesn’t have a URN yet, so I’m not sure what I would target.
I have some other things that would be updated with pulumi up
, and I want to make sure I only create this one thing and not run the other updates.fierce-holiday-69805
08/09/2021, 10:58 PMdry-teacher-74595
08/10/2021, 12:04 AMpulumi destroy
it fails with a bunch of 404 errors. is there a way to force a sync or something?nice-alarm-18551
08/10/2021, 1:19 AMbrash-quill-35776
08/10/2021, 3:57 AMClusterProvider
from pipeline A and use it in pipeline B.
When I do so, I am able to see the ClusterProvider
in pipeline B properly but, since it is of type Output<Provider>
, I can't use it as a provider for k8s Namespace resource
const reference = new pulumi.StackReference("A-dev");
const clusterProvider = reference.requireOutput("clusterProvider").get();
const ns = new k8s.core.v1.Namespace("cluster", {
}, { provider: clusterProvider });
// getting error when pulumi up
Error: Cannot call '.get' during update or preview.
To manipulate the value of this Output, use '.apply' instead.
at Proxy.get (/Users/u6105440/Workspace/tr/Stratus/a207937_stratus-namespace/node_modules/@pulumi/pulumi/output.js:173:15)
at Object.<anonymous> (/Users/u6105440/Workspace/tr/Stratus/a207937_stratus-namespace/src/config.ts:7:75)
at Module._compile (node:internal/modules/cjs/loader:1101:14)
at Module.m._compile (/Users/u6105440/Workspace/tr/Stratus/a207937_stratus-namespace/node_modules/ts-node/src/index.ts:439:23)
at Module._extensions..js (node:internal/modules/cjs/loader:1153:10)
at Object.require.extensions.<computed> [as .ts] (/Users/u6105440/Workspace/tr/Stratus/a207937_stratus-namespace/node_modules/ts-node/src/index.ts:442:12)
at Module.load (node:internal/modules/cjs/loader:981:32)
at Function.Module._load (node:internal/modules/cjs/loader:822:12)
at Module.require (node:internal/modules/cjs/loader:1005:19)
at require (node:internal/modules/cjs/helpers:94:18)
I understand that the provider
property is not Input that blocks it from accepting the Output<Provider>
, and using get()
or apply()
will also having issues.
In this case, how do I get it around? I need this ClusterProvider
to use as k8s provider for the following resourcesgreat-sunset-355
08/10/2021, 8:14 AM--suppress-outputs
on my local machine but still have them in CI pipeline.
I did not find any information here: https://www.pulumi.com/docs/intro/concepts/project/#pulumi-yaml
or here: https://www.pulumi.com/docs/reference/cli/environment-variables/
yet pulumi up
has an option --config
or --config-file
-however I assume its a reference to Pulumi.<StackName>.yaml
config file right?great-sunset-355
08/10/2021, 9:00 AMpulumi config set my_val 1234
then do pulumi up
- Pulumi reports 0 changes in the statebrash-quill-35776
08/10/2021, 3:14 PMdev
in both project A and Bcuddly-lion-92829
08/10/2021, 6:19 PM