Closed ulucinar closed 2 years ago
This PR proposes a change to remove the name attribute from the Project managed resource.
name
Project
I have:
make reviewable test
Tested provisioning a new Atlas project and importing an existing Project using the following manifests:
apiVersion: mongodbatlas.jet.crossplane.io/v1alpha1 kind: Project metadata: name: example-project spec: forProvider: orgId: "<mongodb atlas organization ID>" providerConfigRef: name: default --- apiVersion: mongodbatlas.jet.crossplane.io/v1alpha1 kind: Project metadata: name: example-project annotations: crossplane.io/external-name: <Project name>:<Project ID> spec: forProvider: orgId: "<mongodb atlas organization ID>" providerConfigRef: name: default
Thank you @ulucinar, I tested CRUD operations on the project object and all works as expected :+1:
Description of your changes
This PR proposes a change to remove the
name
attribute from theProject
managed resource.I have:
make reviewable test
to ensure this PR is ready for review.How has this code been tested
Tested provisioning a new Atlas project and importing an existing Project using the following manifests: