kind-hamburger-15227
08/03/2022, 11:24 AMsparse-intern-71089
08/03/2022, 12:57 PMbillowy-laptop-50664
08/03/2022, 2:44 PMrm
a stack if I don't know the passphrase? is it just a matter of deleting the stack directory in the remote state?victorious-dusk-75271
08/03/2022, 6:57 PMflaky-arm-38472
08/04/2022, 6:56 AMnumerous-sundown-3234
08/04/2022, 8:23 AMfull-zebra-67293
08/04/2022, 8:52 AMbrief-helicopter-28120
08/04/2022, 9:32 AMk8s.yaml.ConfigFile
to deploy CRDs into my EKS cluster (typescript) and I run into issues. Btw I'm new to typescript and as well to pulumi. So please kindly bare with me 🙏
Code:
import * as k8s from "@pulumi/kubernetes";
import * as eks from "@pulumi/eks";
export default {
install_crds(cluster: eks.Cluster){
new k8s.yaml.ConfigFile("argocd_namespace", {
file: "kubernetes_cluster_components/namespaces/argocd-namespace.yaml",
}, {providers: { "kubernetes": cluster.provider }});
}
};
Error:
pulumi:pulumi:Stack k8s-moralis-aws-dev-argo-test running. error: an unhandled error occurred: Program exited with non-zero exit code: -1
I0804 09:23:53.878138 22054 deployment_executor.go:162] deploymentExecutor.Execute(...): exiting provider canceller
Type Name Plan Info
pulumi:pulumi:Stack k8s-moralis-aws-dev-argo-test 1 error; 39 messages
Diagnostics:
pulumi:pulumi:Stack (k8s-moralis-aws-dev-argo-test):
Cloud Provider: aws Stack: aws-dev-argo-test
error: an unhandled error occurred: Program exited with non-zero exit code: -1
The error message is not very descriptive, hence difficult to troubleshoot. Can someone please help me here 🙏echoing-postman-88590
08/04/2022, 10:31 AMwhite-chef-55657
08/04/2022, 11:43 AMbreezy-laptop-42679
08/04/2022, 12:41 PMbreezy-laptop-42679
08/04/2022, 12:41 PM/*
* s3 public access block
*/
const bucketNameList = ["prod-nueve-media-9184fce"]
const bucketIdList: pulumi.Output<string>[] = []
bucketNameList.forEach(bucketName => {
// Create an AWS resource (S3 Bucket)
const bucket = new aws.s3.Bucket(bucketName, {});
bucketIdList.push(bucket.id)
});
for (let index = 0; index < bucketIdList.length; index++) {
new aws.s3.BucketPublicAccessBlock(`${bucketNameList[index]}-publicAccessBlock`, {
bucket: bucketIdList[index],
blockPublicAcls: true,
blockPublicPolicy: true,
});
}
worried-helmet-23171
08/04/2022, 12:48 PMbrief-baker-41837
08/04/2022, 1:01 PMbreezy-laptop-42679
08/04/2022, 1:10 PMPULUMI_AUTOMATION_API_SKIP_VERSION_CHECK=true
ripe-ram-38792
08/04/2022, 1:36 PMbillowy-laptop-50664
08/04/2022, 3:18 PMaloof-dress-1001
08/04/2022, 4:44 PMwet-account-54803
08/04/2022, 8:40 PMstocky-petabyte-29883
08/04/2022, 8:56 PMnew awsx.ec2.Subnet
or new aws.ec2.Subnet
.
How do we set the subnet as private or public? (edited)quick-airport-30353
08/04/2022, 9:17 PMflaky-arm-38472
08/05/2022, 3:35 AMwarning: aws:ec2/subnet:Subnet resource 'x-subnet-prv-1a' has a problem: Conflicting configuration arguments: "availability_zone": conflicts with availability_zone_id. Examine values at 'Subnet.AvailabilityZone'.
warning: aws:ec2/subnet:Subnet resource 'x-subnet-prv-1a' has a problem: Conflicting configuration arguments: "availability_zone_id": conflicts with availability_zone. Examine values at 'Subnet.AvailabilityZoneId'.
I proceed with the import and add the generated code.
Then when running pulumi up
it throws errors:
error: aws:ec2/subnet:Subnet resource 'x-subnet-prv-1a' has a problem: Conflicting configuration arguments: "availability_zone": conflicts with availability_zone_id. Examine values at 'Subnet.AvailabilityZone'.
error: aws:ec2/subnet:Subnet resource 'x-subnet-prv-1a' has a problem: Conflicting configuration arguments: "availability_zone_id": conflicts with availability_zone. Examine values at 'Subnet.AvailabilityZoneId'.
Any ideas?able-dentist-35553
08/05/2022, 5:26 AMable-dentist-35553
08/05/2022, 5:26 AMable-dentist-35553
08/05/2022, 5:27 AMerror: unmarshaling urn:...$auth0:index/tenant:Tenant$auth0:index/connection:Connection::connection-dev's instance state: could not read field options: '' expected type 'string', got unconvertible type 'map[string]interface {}', value: 'map[]'
red-scooter-62880
08/05/2022, 9:06 AMambitious-agent-35343
08/05/2022, 9:39 AMlate-petabyte-3251
08/05/2022, 5:35 PMbroad-toddler-72261
08/05/2022, 7:20 PMbig-potato-91793
08/05/2022, 7:50 PMpulumi:pulumi:Stack security-groups-prod running error: an unhandled error occurred: Program exited with non-zero exit code: -1
Using aws provider and pulumi… for weird reason this only happen in one of my stack…. in all 3.. I activated the debug and versbose log and I’m not seeing anything wrong… any idea?big-potato-91793
08/05/2022, 7:50 PMpulumi:pulumi:Stack security-groups-prod running error: an unhandled error occurred: Program exited with non-zero exit code: -1
Using aws provider and pulumi… for weird reason this only happen in one of my stack…. in all 3.. I activated the debug and versbose log and I’m not seeing anything wrong… any idea?ebug: RegisterResource RPC prepared: t=aws:ec2/securityGroup:SecurityGroup, name=es.prod.eu-west-1
error: an unhandled error occurred: Program exited with non-zero exit code: -1
curved-helicopter-46451
08/05/2022, 7:59 PMbig-potato-91793
08/05/2022, 8:05 PMcurved-helicopter-46451
08/05/2022, 8:08 PMpulumi plugin install resource aws 5.7.2