File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -77,24 +77,24 @@ func resourceTencentcloudEksCluster() *schema.Resource {
77
77
Schema : map [string ]* schema.Schema {
78
78
"cluster_name" : {
79
79
Type : schema .TypeString ,
80
- Optional : true ,
80
+ Required : true ,
81
81
Description : "Name of EKS cluster." ,
82
82
},
83
83
"k8s_version" : {
84
84
Type : schema .TypeString ,
85
- Optional : true ,
85
+ Required : true ,
86
86
ForceNew : true ,
87
87
Description : "Kubernetes version of EKS cluster." ,
88
88
},
89
89
"vpc_id" : {
90
90
Type : schema .TypeString ,
91
- Optional : true ,
91
+ Required : true ,
92
92
ForceNew : true ,
93
93
Description : "Vpc Id of EKS cluster." ,
94
94
},
95
95
"subnet_ids" : {
96
96
Type : schema .TypeList ,
97
- Optional : true ,
97
+ Required : true ,
98
98
Description : "Subnet Ids for EKS cluster." ,
99
99
Elem : & schema.Schema {Type : schema .TypeString },
100
100
},
You can’t perform that action at this time.
0 commit comments