astonishing-gpu-28317
03/07/2022, 5:07 PMpulumi up
, those environment variables are removed by pulumi because they’re not defined in our pulumi cloud run profileeager-thailand-33661
03/09/2022, 3:16 PMquick-controller-81195
03/10/2022, 3:42 PMpulumi_google_native.cloudbuild.v1
but get an error message saying “the project is not allowlisted to create regional triggers”. There seems to be 2 different api endpoints for cloudbuild triggers, one called projects.locations.triggers and one projects.trigger.
https://cloud.google.com/build/docs/api/reference/rest
Is there any way to create a trigger without location with pulumi gcp native, or do you need to use the location trigger?fast-arm-63150
03/11/2022, 11:41 AMfast-arm-63150
03/12/2022, 12:36 AMfuture-window-78560
03/12/2022, 4:43 AMbillowy-processor-56040
03/14/2022, 6:10 PMbillowy-processor-56040
03/14/2022, 6:11 PMchilly-nest-3657
03/16/2022, 4:18 PMancient-rose-25146
03/17/2022, 10:00 PMroles/storage.admin
for all buckets using Google Native. I see how it is done using GCP classic using gcp.projects.IAMBinding
, but I can't seem to find the equivalent implementation on the native version. Any help would be appreciated.chilly-nest-3657
03/17/2022, 11:15 PMroles/cloudfunctions.invoker
chilly-nest-3657
03/17/2022, 11:16 PMfuture-window-78560
03/18/2022, 5:50 AMfuture-window-78560
03/20/2022, 8:01 PMchilly-nest-3657
03/21/2022, 11:24 AM@pulumi/google-native
provider has no support for Long-running operations. https://github.com/googleapis/gax-nodejs/blob/main/client-libraries.md#long-running-operations … so any resources that are dependent on a long running operation completing won’t workchilly-nest-3657
03/21/2022, 11:24 AMproud-pizza-80589
03/22/2022, 4:31 PMadorable-action-51248
03/24/2022, 12:12 AMgcloud alpha network-services
like for example ‘http-routes’ etc.gray-train-92590
04/01/2022, 6:35 PMfuture-window-78560
04/02/2022, 3:00 PMbrainy-kilobyte-81765
04/12/2022, 9:51 AMhelpful-shoe-41967
04/12/2022, 7:55 PMpulumi update
the process want to update my resource (db-instance) on my gcp even when diff operations shows that everything are the same.
When I use
pulumi update --diff --json > diff-file.json
I can see the newState and oldState for resource is exactly the same but pulumi still want to update it with error like this:
... 1 error occurred:
* Error, failed to update instance settings for : googleapi: Error 412: Condition does not match., staleData
Could anyone advice me how I could track it down?eager-keyboard-30823
04/13/2022, 9:14 AM"secrets.backend"
Value: "airflow.providers.google.cloud.secrets.secret_manager.CloudSecretManagerBackend"
But I’m not sure about the key value. Should the separator be .
, :
, something else. Anyone know?future-window-78560
04/18/2022, 10:41 AMallow_connections=True,
The code:
main = gcp.sql.DatabaseInstance("postgresinstance",
database_version="POSTGRES_12",
region="us-central1",
deletion_protection=False,
# deletion_protection=False,
settings=gcp.sql.DatabaseInstanceSettingsArgs(
tier="db-f1-micro",
))
database = gcp.sql.Database("database",
instance=main.name,
allow_connections=True,
)
Any guide on how to get rid of this error:
anaconda3/lib/python3.9/site-packages/pulumi_gcp/sql/database.py", line 386, in init
self._internal_init(resource_name, *args, **kwargs)
TypeError: _internal_init() got an unexpected keyword argument 'allow_connections'high-pencil-44536
04/19/2022, 4:33 PMbran@danforth infra % pulumi import google-native:cloudresourcemanager/v3:Folder non_production 250711497935
Previewing import (shared):
Type Name Plan Info
pulumi:pulumi:Stack infra-shared 1 error
= └─ google-native:cloudresourcemanager/v3:Folder non_production import 1 error
Diagnostics:
pulumi:pulumi:Stack (infra-shared):
error: preview failed
google-native:cloudresourcemanager/v3:Folder (non_production):
error: Preview failed: property "foldersId"/"name" not found
Whats the right incantation here or is this a bug?astonishing-gpu-28317
04/20/2022, 6:25 PMwhite-crayon-65245
05/03/2022, 4:23 PMdelete-replacedd
during a deploy without any changes to that resource's code
I'm a bit stumped as to what could have caused this especially since imported resources are protected by default -- has anyone else seen anything similar?future-window-78560
05/10/2022, 3:40 AMancient-rose-25146
05/11/2022, 12:50 PMconst externalDnsGCPServiceAccount = new gcpNative.iam.v1.ServiceAccount(
"external-dns-gcp-sa",
{
accountId: `external-dns-${environment}`,
}
);
new gcp.projects.IAMBinding("external-dns-dns-admin-rb", {
project: project,
role: "roles/dns.admin",
members: [
externalDnsGCPServiceAccount.email.apply((s) => `serviceAccount:${s}`),
],
});
gifted-cat-49297
05/11/2022, 2:55 PM