This repository was archived by the owner on Mar 1, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +8
-10
lines changed Expand file tree Collapse file tree 4 files changed +8
-10
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,6 @@ data "gcore_k8s" "v" {
50
50
- ** container_version** (String)
51
51
- ** created_at** (String)
52
52
- ** discovery_url** (String)
53
- - ** external_dns_enabled** (Boolean)
54
53
- ** faults** (Map of String)
55
54
- ** fixed_network** (String)
56
55
- ** fixed_subnet** (String)
Original file line number Diff line number Diff line change @@ -51,7 +51,6 @@ resource "gcore_k8s" "v" {
51
51
### Optional
52
52
53
53
- ** auto_healing_enabled** (Boolean)
54
- - ** external_dns_enabled** (Boolean)
55
54
- ** id** (String) The ID of this resource.
56
55
- ** last_updated** (String)
57
56
- ** master_lb_floating_ip_enabled** (Boolean)
Original file line number Diff line number Diff line change @@ -68,10 +68,10 @@ func dataSourceK8s() *schema.Resource {
68
68
Type : schema .TypeBool ,
69
69
Computed : true ,
70
70
},
71
- "external_dns_enabled" : & schema.Schema {
72
- Type : schema .TypeBool ,
73
- Computed : true ,
74
- },
71
+ // "external_dns_enabled": &schema.Schema{
72
+ // Type: schema.TypeBool,
73
+ // Computed: true,
74
+ // },
75
75
"master_lb_floating_ip_enabled" : & schema.Schema {
76
76
Type : schema .TypeBool ,
77
77
Computed : true ,
Original file line number Diff line number Diff line change @@ -100,10 +100,10 @@ func resourceK8s() *schema.Resource {
100
100
Type : schema .TypeBool ,
101
101
Optional : true ,
102
102
},
103
- "external_dns_enabled" : & schema.Schema {
104
- Type : schema .TypeBool ,
105
- Optional : true ,
106
- },
103
+ // "external_dns_enabled": &schema.Schema{
104
+ // Type: schema.TypeBool,
105
+ // Optional: true,
106
+ // },
107
107
"master_lb_floating_ip_enabled" : & schema.Schema {
108
108
Type : schema .TypeBool ,
109
109
Optional : true ,
You can’t perform that action at this time.
0 commit comments