fancy-shoe-18611
08/02/2022, 6:13 PMpulumi/actions@v3
and am getting an error no resource plugin 'pulumi-resource-aws' found in the workspace at v5.4.0 or on your $PATH, install the pluging using 'pulumi plugin install resource aws v5.4.0
I am able to resolve this locally but dont yet know how to get the plugin installed in the actionfuture-window-78560
08/03/2022, 3:58 AMgcloud compute resource-policies create instance-schedule
SCHEDULE_NAME
\ [--description='
SCHEDULE_DESCRIPTION
'] \ [--region=
REGION
] \ [--vm-start-schedule='
START-OPERATION_SCHEDULE
'] \ [--vm-stop-schedule='
STOP-OPERATION_SCHEDULE
'] \ [--timezone=
TIME_ZONE
] \ [--initiation-date=
INITIATION_DATE
] \ [--end-date=
END_DATE
]rich-agency-75207
08/03/2022, 8:01 AMrich-agency-75207
08/03/2022, 8:01 AMbig-psychiatrist-43588
08/03/2022, 9:11 AMstocky-petabyte-29883
08/03/2022, 10:04 AMkind-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 AM