Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

MasterAuthorizedNetworksConfig

import type { MasterAuthorizedNetworksConfig } from "https://googleapis.deno.dev/v1/composer:v1.ts";

Configuration options for the master authorized networks feature. Enabled master authorized networks will disallow all external traffic to access Kubernetes master through HTTPS except traffic from the given CIDR blocks, Google Compute Engine Public IPs and Google Prod IPs.

interface MasterAuthorizedNetworksConfig {
cidrBlocks?: CidrBlock[];
enabled?: boolean;
}

§Properties

§
cidrBlocks?: CidrBlock[]
[src]

Up to 50 external networks that could access Kubernetes master through HTTPS.

§
enabled?: boolean
[src]

Whether or not master authorized networks feature is enabled.