Hi @rjohnson318,
If you’re using Terraform 0.12, accessing variables no longer requires quotes or string interpolation. For your resource group, you can remove the quotes around data.terraform_remote_state.network.outputs.quan_netwk. This will allow it to access the data source instead of passing it as a name.
## Terraform 0.12 syntax
module "quannetwork" {
## omitted for clarity
resource_group_name = data.terraform_remote_state.network.outputs.quan_netwk
}