Removed obsolete TODO's.

This commit is contained in:
aznashwan 2015-06-12 20:57:25 +03:00
parent ebfbef0d52
commit bd371a3c40
1 changed files with 0 additions and 2 deletions

View File

@ -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),