Can someone point me in the direction of how to su...
# contribute
s
Can someone point me in the direction of how to submit requests for the documentation pages? I spend a lot of time reading the api docs for pulumi-aws and want to help fix things like: https://www.pulumi.com/registry/packages/aws/api-docs/s3/bucketlifecycleconfigurationv2/ like where the example has
opts*=*pulumi*.*ResourceOptions(depends_on*=*[versioning]))
even though "versioning" object doesn't exist anywhere in example.. someone could get confused by this.
l
The versioning object exists in the nodejs example, I can see it:
Copy code
const versioning = new aws.s3.BucketVersioningV2("versioning", {
    bucket: versioningBucket.id,
    versioningConfiguration: {
        status: "Enabled",
    },
});
Yes, it's in the Python example too:
Copy code
versioning = aws.s3.BucketVersioningV2("versioning",
    bucket=versioning_bucket.id,
    versioning_configuration=aws.s3.BucketVersioningV2VersioningConfigurationArgs(
        status="Enabled",
    ))
s
omg, thats weird.. i dont know how i missed it. okay that's not a good example then.. but this is a good place for me possibly help out. thanks!
l
Hey @sparse-gold-10561 we're so excited and thankful you'd like to contribute here. These docs are not directly editable by the community, and the best path is to file an issue here with your suggested changes included in the details. https://github.com/pulumi/pulumi-aws/issues. I'll keep an eye out for it.