mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
Removed obsolete TODO's.
This commit is contained in:
parent
ebfbef0d52
commit
bd371a3c40
@ -86,7 +86,6 @@ func resourceAzureSecurityGroupRuleCreate(d *schema.ResourceData, meta interface
|
|||||||
// create and configure the RuleResponse:
|
// create and configure the RuleResponse:
|
||||||
name := d.Get("name").(string)
|
name := d.Get("name").(string)
|
||||||
rule := netsecgroup.RuleRequest{
|
rule := netsecgroup.RuleRequest{
|
||||||
// TODO(aznashwan): security checks here:
|
|
||||||
Name: name,
|
Name: name,
|
||||||
Type: netsecgroup.RuleType(d.Get("type").(string)),
|
Type: netsecgroup.RuleType(d.Get("type").(string)),
|
||||||
Priority: d.Get("priority").(int),
|
Priority: d.Get("priority").(int),
|
||||||
@ -207,7 +206,6 @@ func resourceAzureSecurityGroupRuleUpdate(d *schema.ResourceData, meta interface
|
|||||||
|
|
||||||
// else, start building up the rule request struct:
|
// else, start building up the rule request struct:
|
||||||
newRule := netsecgroup.RuleRequest{
|
newRule := netsecgroup.RuleRequest{
|
||||||
// TODO(azhnashwan): Parameter check here:
|
|
||||||
Name: d.Get("name").(string),
|
Name: d.Get("name").(string),
|
||||||
Type: netsecgroup.RuleType(d.Get("type").(string)),
|
Type: netsecgroup.RuleType(d.Get("type").(string)),
|
||||||
Priority: d.Get("priority").(int),
|
Priority: d.Get("priority").(int),
|
||||||
|
Loading…
Reference in New Issue
Block a user