Skip to content
This repository was archived by the owner on Mar 1, 2023. It is now read-only.

Commit b7a1839

Browse files
committed
external_dns in k8s resource/data_source disabled
1 parent 458f591 commit b7a1839

File tree

4 files changed

+8
-10
lines changed

4 files changed

+8
-10
lines changed

docs/data-sources/gcore_k8s.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ data "gcore_k8s" "v" {
5050
- **container_version** (String)
5151
- **created_at** (String)
5252
- **discovery_url** (String)
53-
- **external_dns_enabled** (Boolean)
5453
- **faults** (Map of String)
5554
- **fixed_network** (String)
5655
- **fixed_subnet** (String)

docs/resources/gcore_k8s.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ resource "gcore_k8s" "v" {
5151
### Optional
5252

5353
- **auto_healing_enabled** (Boolean)
54-
- **external_dns_enabled** (Boolean)
5554
- **id** (String) The ID of this resource.
5655
- **last_updated** (String)
5756
- **master_lb_floating_ip_enabled** (Boolean)

gcore/data_source_gcore_k8s.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,10 @@ func dataSourceK8s() *schema.Resource {
6868
Type: schema.TypeBool,
6969
Computed: true,
7070
},
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+
//},
7575
"master_lb_floating_ip_enabled": &schema.Schema{
7676
Type: schema.TypeBool,
7777
Computed: true,

gcore/resource_gcore_k8s.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,10 @@ func resourceK8s() *schema.Resource {
100100
Type: schema.TypeBool,
101101
Optional: true,
102102
},
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+
//},
107107
"master_lb_floating_ip_enabled": &schema.Schema{
108108
Type: schema.TypeBool,
109109
Optional: true,

0 commit comments

Comments
 (0)