Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…#3934) (#2448)

Co-authored-by: Çağatay Gürtürk <[email protected]>
Signed-off-by: Modular Magician <[email protected]>

Co-authored-by: Çağatay Gürtürk <[email protected]>
  • Loading branch information
modular-magician and cagataygurturk authored Sep 1, 2020
1 parent bb3a835 commit 5634ed6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .changelog/3934.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
compute: Fixed bug with `google_netblock_ip_ranges` data source failing to read from the correct URL
```
2 changes: 1 addition & 1 deletion google-beta/data_source_google_netblock_ip_ranges.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ func dataSourceGoogleNetblockIpRangesRead(d *schema.ResourceData, meta interface
d.Set("cidr_blocks_ipv6", CidrBlocks["cidr_blocks_ipv6"])
case "google-netblocks":
// https://cloud.google.com/vpc/docs/configure-private-google-access?hl=en#ip-addr-defaults
const GOOGLE_NETBLOCK_URL = "http://www.gstatic.com/ipranges/goog.json"
const GOOGLE_NETBLOCK_URL = "https://www.gstatic.com/ipranges/goog.json"
CidrBlocks, err := getCidrBlocksFromUrl(GOOGLE_NETBLOCK_URL)

if err != nil {
Expand Down

0 comments on commit 5634ed6

Please sign in to comment.