File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed
Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -98,16 +98,17 @@ func TestAccDataSourceGKEPolicies_basic(t *testing.T) {
9898
9999const testAccDataSourceGKEPoliciesConfig = `
100100data "castai_gke_user_policies" "gke" {
101- features = [
102- "load_balancers_target_backend_pools",
103- "load_balancers_unmanaged_instance_groups"
104- ]
101+ features = {
102+ "load_balancers_target_backend_pools": true ,
103+ "load_balancers_unmanaged_instance_groups": true
104+ }
105105}
106106`
107107const testAccDataSourceGKEPoliciesConfigUpdated = `
108108data "castai_gke_user_policies" "gke" {
109- features = [
110- "load_balancers_target_backend_pools"
111- ]
109+ features = {
110+ "load_balancers_target_backend_pools": true,
111+ "load_balancers_unmanaged_instance_groups": false
112+ }
112113}
113114`
You can’t perform that action at this time.
0 commit comments