ambitious-father-68746
10/10/2022, 1:10 PMmysterious-apartment-62241
10/10/2022, 3:46 PMfew-mechanic-54967
10/11/2022, 6:27 AMjolly-doctor-17673
10/11/2022, 8:49 AMhelpful-baker-38839
10/11/2022, 6:06 PMsalmon-australia-56314
10/12/2022, 9:18 PMstrong-helmet-83704
10/13/2022, 1:35 AMsteep-lamp-20408
10/13/2022, 4:57 AMaws.appsync.Resolver
.
But when I’m creating a resolver with no data source with Pulumi, like :
resolver_get_version = aws.appsync.Resolver(
"my-resolver",
api_id=graphql_api.id,
field="getVersion",
type="Query",
request_template="""
""",
response_template="""
$util.toJson("1.0.0")
""",
)
I get * error creating AppSync Resolver: BadRequestException: Data source name not specified.
Any idea?creamy-knife-93354
10/13/2022, 10:50 AMaws:elasticache:SubnetGroup (development-redis-cluster-subnet-group)
error: 1 error occurred:
* updating urn:pulumi:development::infrastructure::aws:elasticache/subnetGroup:SubnetGroup::development-redis-cluster-subnet-group: 1 error occurred:
* error updating ElastiCache Subnet Group (development-redis-cluster-subnet-group-d9a2442): SubnetInUse: The subnet ID subnet-080131aac7c84ef96 is in use.
status code: 400, request id: 0ef21b3e-3cb0-42ac-8f71-deda19664e99
aws:memorydb:SubnetGroup (development-memorydb-subnetgroup)
error: 1 error occurred:
* updating urn:pulumi:development::infrastructure::aws:memorydb/subnetGroup:SubnetGroup::development-memorydb-subnetgroup: 1 error occurred:
* error updating MemoryDB Subnet Group (development-memorydb-subnetgroup-605fbe7): SubnetInUse: The subnet IDs subnet-0f6fd73e1a386d9dd,subnet-080131aac7c84ef96 are in use.
aws:rds:SubnetGroup (development-postgresql-subnetgroup)
error: 1 error occurred:
* updating urn:pulumi:development::infrastructure::aws:rds/subnetGroup:SubnetGroup::development-postgresql-subnetgroup: 1 error occurred:
* InvalidParameterValue: Some of the subnets to be deleted are currently in use: subnet-080131aac7c84ef96
status code: 400, request id: bf6bd299-5566-47f5-933f-227c0a200119
What's the general recommendation to be able to perfom such changes successfully? Or more concretely, how do I fix this? 😄few-carpenter-12885
10/13/2022, 5:33 PMgrantRead
or grantReadWrite
in Pulumi? Everything must be written as separate roles/policies?few-carpenter-12885
10/13/2022, 7:40 PMtaskRole: { roleArn: taskRole.arn },
stale-translator-56956
10/14/2022, 1:47 PMlively-needle-84406
10/14/2022, 7:12 PMdbSubnetGroupName
& vpcSecurityGroupIds
.
Which should I be using to associate the RDS instance to the VPC?
(Creating the VPC first because I am having issues connecting to the instance created in the default vpc).wooden-queen-83060
10/17/2022, 10:37 AMfew-plastic-88435
10/17/2022, 12:38 PMquiet-restaurant-8256
10/17/2022, 6:28 PMquiet-restaurant-8256
10/17/2022, 6:28 PMquick-plumber-17782
10/18/2022, 8:38 AMconst backup = new aws.ec2.AmiFromInstance(`try-AMI`,{
sourceInstanceId : 'i-0000000000',
description:`AMI from instance`,
snapshotWithoutReboot:1
})
// Export the name of the bucket
exports.backupName = backup.name;
exports.backupId = backup.id;
exports.backupArn = backup.arn;
I got this error :
error: update failed
aws:ec2:AmiFromInstance (try-AMI -1892022115):
error: 1 error occurred:
* error creating EC2 AMI try-AMI -1892022115-a6bdcdd) from EC2 Instance ('i-0000000000'): InvalidInstanceID.NotFound: The instance ID 'i-0000000000'' does not exist
status code: 400, request id: c8ef283f-2cec-4e95-8439-d03cd3369c9b
in the aws managment console I see the instance (running) , can anybody help me please ? thank you.hallowed-train-1850
10/19/2022, 12:26 PMDiagnostics:
aws-native:events:EventBus (ApiEventBus0174951C):
error: Resource type aws-native:events:EventBus not found
Any ideas?lively-needle-84406
10/19/2022, 4:08 PMgifted-fall-44000
10/19/2022, 7:30 PMfew-mechanic-54967
10/20/2022, 3:22 AMgreat-sunset-355
10/20/2022, 9:36 AMCGO_ENABLED=0
can anyone help me to build the plugin binary with the flag set to 1?
I figured that the easiest way will be to fork the repository and then trigger GH action to build me an artifact and spare me of having to setup dev env
https://github.com/pulumi/pulumi-aws/issues/2185
https://github.com/jans-forks/pulumi-awsmillions-parrot-88279
10/21/2022, 12:43 PMmillions-parrot-88279
10/21/2022, 12:46 PMfuture-window-78560
10/21/2022, 3:51 PMimport pulumi
import pulumi_ssp
from pulumi_ssp import SharedServicesPlatform, ClusterArgsArgs
from pulumi_aws.eks import FargateProfileSelectorArgs
ssp = SharedServicesPlatform("python-platform", cluster_args=ClusterArgsArgs(kubernetes_version="1.21.0", region="us-east-2"))
ssp.add_managed_node_group(name="test-python-ng", desired_size=1, min_size=1, max_size=1, instance_types=["t3.medium"])
# ssp.add_fargate_profile(name="fargate", selectors=[FargateProfileSelectorArgs(namespace="fargate", labels={"namespace": "fargate"})])
ssp.onboard_team(name="team-python", repository="<http://github.com/pulumi/pulumi|github.com/pulumi/pulumi>", controller="pulumi")
and getting following error on pulumi-ssp installation
ERROR: Could not find a version that satisfies the requirement pulumi-ssp (from versions: none)
ERROR: No matching distribution found for pulumi-ssp
square-hair-965
10/21/2022, 8:47 PMconst replicantProvider = new aws.Provider("replicantProvider", {
region: 'us-east-2'
});
const replicantS3Bucket = new aws.s3.Bucket(replicantBucketName, replicantBucketConfig, {
provider: replicantProvider
});
little-soccer-5693
10/22/2022, 12:02 AMfull-analyst-32960
10/22/2022, 8:32 PMexec /docker-entrypoint.sh: exec format error
Is there a way to request my cluster be ARM or can I tell pulumi to custom build with --platform=linux/amd64
?nice-father-44210
10/23/2022, 4:28 PMpulumi-kubernetes
?
I’m trying to find the right combination of arguments to make it work but coming up short (I’m new to Helm).
Any ideas?
ecr_token = aws.ecr.get_authorization_token()
pulumi_kubernetes.helm.v3.Release(
"release",
pulumi_kubernetes.helm.v3.ReleaseArgs(
name = "test",
chart = "my-chart",
version = "0.1.0",
repository_opts = pulumi_kubernetes.helm.v3.RepositoryOptsArgs(
repo = f"oci://{account_id}.dkr.ecr.{region}.<http://amazonaws.com/my-chart|amazonaws.com/my-chart>",
username = "AWS",
password = ecr_token.authorization_token,
),
values = {}
),
opts = pulumi.ResourceOptions(provider = my_k8s_provider, )
)