File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed
integration/simple_autopilot_public/controls Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ resource "time_sleep" "wait_acm" {
25
25
count = (var. create_ssh_key == true || var. ssh_auth_key != null ) ? 1 : 0
26
26
depends_on = [google_gke_hub_feature_membership . main ]
27
27
28
- create_duration = " 30s "
28
+ create_duration = " 60s "
29
29
}
30
30
31
31
resource "kubernetes_secret_v1" "creds" {
Original file line number Diff line number Diff line change 32
32
33
33
describe "cluster" do
34
34
it "is running" do
35
- expect ( data [ 'status' ] ) . to eq 'RUNNING'
35
+ expect ( data [ 'status' ] ) . to eq ( 'RUNNING' ) . or eq ( 'RECONCILING' )
36
36
end
37
37
38
38
it "is autopilot" do
Original file line number Diff line number Diff line change @@ -53,6 +53,8 @@ module "gke-project-1" {
53
53
org_id = var. org_id
54
54
folder_id = var. folder_id
55
55
billing_account = var. billing_account
56
+ # due to https://github.com/hashicorp/terraform-provider-google/issues/9505 for AP
57
+ default_service_account = " keep"
56
58
57
59
auto_create_network = true
58
60
@@ -74,6 +76,8 @@ module "gke-project-2" {
74
76
org_id = var. org_id
75
77
folder_id = var. folder_id
76
78
billing_account = var. billing_account
79
+ # due to https://github.com/hashicorp/terraform-provider-google/issues/9505 for AP
80
+ default_service_account = " keep"
77
81
78
82
activate_apis = local. apis
79
83
activate_api_identities = [
@@ -94,6 +98,8 @@ module "gke-project-asm" {
94
98
org_id = var. org_id
95
99
folder_id = var. folder_id
96
100
billing_account = var. billing_account
101
+ # due to https://github.com/hashicorp/terraform-provider-google/issues/9505 for AP
102
+ default_service_account = " keep"
97
103
98
104
activate_apis = local. apis
99
105
}
You can’t perform that action at this time.
0 commit comments