Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions autogen/main/masq.tf.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/******************************************
Create ip-masq-agent confimap
*****************************************/
resource "kubernetes_config_map" "ip_masq_agent" {
resource "kubernetes_config_map_v1" "ip_masq_agent" {
count = var.configure_ip_masq ? 1 : 0

metadata {
Expand Down Expand Up @@ -48,4 +48,4 @@ EOF
{% endif %}
]
}
{% endif %}
{% endif %}
2 changes: 1 addition & 1 deletion masq.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/******************************************
Create ip-masq-agent confimap
*****************************************/
resource "kubernetes_config_map" "ip_masq_agent" {
resource "kubernetes_config_map_v1" "ip_masq_agent" {
count = var.configure_ip_masq ? 1 : 0

metadata {
Expand Down
2 changes: 1 addition & 1 deletion modules/beta-private-cluster-update-variant/masq.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/******************************************
Create ip-masq-agent confimap
*****************************************/
resource "kubernetes_config_map" "ip_masq_agent" {
resource "kubernetes_config_map_v1" "ip_masq_agent" {
count = var.configure_ip_masq ? 1 : 0

metadata {
Expand Down
2 changes: 1 addition & 1 deletion modules/beta-private-cluster/masq.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/******************************************
Create ip-masq-agent confimap
*****************************************/
resource "kubernetes_config_map" "ip_masq_agent" {
resource "kubernetes_config_map_v1" "ip_masq_agent" {
count = var.configure_ip_masq ? 1 : 0

metadata {
Expand Down
2 changes: 1 addition & 1 deletion modules/beta-public-cluster-update-variant/masq.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/******************************************
Create ip-masq-agent confimap
*****************************************/
resource "kubernetes_config_map" "ip_masq_agent" {
resource "kubernetes_config_map_v1" "ip_masq_agent" {
count = var.configure_ip_masq ? 1 : 0

metadata {
Expand Down
2 changes: 1 addition & 1 deletion modules/beta-public-cluster/masq.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/******************************************
Create ip-masq-agent confimap
*****************************************/
resource "kubernetes_config_map" "ip_masq_agent" {
resource "kubernetes_config_map_v1" "ip_masq_agent" {
count = var.configure_ip_masq ? 1 : 0

metadata {
Expand Down
2 changes: 1 addition & 1 deletion modules/gke-standard-cluster/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1123,9 +1123,9 @@ spec:
roles:
- level: Project
roles:
- roles/container.admin
- roles/iam.serviceAccountUser
- roles/compute.admin
- roles/container.admin
services:
- compute.googleapis.com
- container.googleapis.com
Expand Down
2 changes: 1 addition & 1 deletion modules/private-cluster-update-variant/masq.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/******************************************
Create ip-masq-agent confimap
*****************************************/
resource "kubernetes_config_map" "ip_masq_agent" {
resource "kubernetes_config_map_v1" "ip_masq_agent" {
count = var.configure_ip_masq ? 1 : 0

metadata {
Expand Down
2 changes: 1 addition & 1 deletion modules/private-cluster/masq.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/******************************************
Create ip-masq-agent confimap
*****************************************/
resource "kubernetes_config_map" "ip_masq_agent" {
resource "kubernetes_config_map_v1" "ip_masq_agent" {
Comment thread
maxxieb marked this conversation as resolved.
count = var.configure_ip_masq ? 1 : 0

metadata {
Expand Down