I'm fairly new to GDM but I've a few years of CloudFormation under my belt. I'm trying to split the deployment of my resources into multiple deployments
. I'm now running into an issue where I need to reference the outputs from a deployment which is already live into a fresh new deployment. One example:
- I deploy networking-specific resources in a dedicated
network
deployment, which is in charge of creating adns.v1.managedZone
DNS zone - I now want to deploy a CloudSQL instance with another deployment, in which I'd like to create a
gcp-types/dns-v1:resourceRecordSets
DNS records set for which themanagedZone
property should reference the zone created by the other deployment
is it at all possible?