I am attempting to create a logging.v2.sink
in my deployment manager configuration:
resources:
- name: audit-log-sink
type: logging.v2.sink
properties:
name: audit-log
destination: projects/{{ env["project"] }}/topics/audit-log-topic
metadata:
dependsOn:
- audit-log-topic
After running the command:
gcloud deployment-manager deployments create my-deployment --config ./my-deployment.jinja --preview
I receive the following validation error:
errors:
- code: CONDITION_NOT_MET
location: /deployments/my-deployment/resources/audit-log-sink->$.properties
message: '"/name": domain: validation; keyword: type; message: instance does not
match any allowed primitive type; allowed: ["string"]; found: "null"'
No matter what I put for the value of the name
property it is passed as a null value to the validation.
The proper field is
sink
notname
. Here is the correct configuration: