I'm trying to reference secondary ranges in another resource:
resource "google_compute_subnetwork" "mysubnetwork" {
name = "mysubnetwork"
....
secondary_ip_range {
range_name = "mysecondary"
ip_cidr_range = "10.0.0.0/24"
}
....
resource "google_container_cluster" "my-cluster" {
....
ip_allocation_policy{
cluster_secondary_range_name = <reference my existing secondary ranges>
services_secondary_range_name = <reference my existing secondary ranges>
}
Tried this: google_compute_subnetwork.mysubnetwork.secondary_ip_range.range_name["mysecondary"]
but got This value does not have any attributes.
I tried this: google_compute_subnetwork.mysubnetwork.secondary_ip_range.range_name.mysecondary
but got the same error.
This is convoluted and I havent tested yet but seem like it will work- will I run into issues with this? Want to know if there is a preferable way. For clarity it should be obvious what range is being referenced (so not using an index number)