-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New Resource:
azurerm_notification_hub_authorization_rule
Tests pass: ``` ```
- Loading branch information
1 parent
1d38805
commit 3914a28
Showing
6 changed files
with
633 additions
and
0 deletions.
There are no files selected for viewing
80 changes: 80 additions & 0 deletions
80
azurerm/import_arm_notification_hub_authorization_rule_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
package azurerm | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/hashicorp/terraform/helper/acctest" | ||
"github.com/hashicorp/terraform/helper/resource" | ||
) | ||
|
||
func TestAccAzureRMNotificationHubAuthorizationRule_importListen(t *testing.T) { | ||
resourceName := "azurerm_notification_hub_authorization_rule.test" | ||
|
||
ri := acctest.RandInt() | ||
location := testLocation() | ||
config := testAzureRMNotificationHubAuthorizationRule_listen(ri, location) | ||
|
||
resource.Test(t, resource.TestCase{ | ||
PreCheck: func() { testAccPreCheck(t) }, | ||
Providers: testAccProviders, | ||
CheckDestroy: testCheckAzureRMNotificationHubAuthorizationRuleDestroy, | ||
Steps: []resource.TestStep{ | ||
{ | ||
Config: config, | ||
}, | ||
{ | ||
ResourceName: resourceName, | ||
ImportState: true, | ||
ImportStateVerify: true, | ||
}, | ||
}, | ||
}) | ||
} | ||
|
||
func TestAccAzureRMNotificationHubAuthorizationRule_importManage(t *testing.T) { | ||
resourceName := "azurerm_notification_hub_authorization_rule.test" | ||
|
||
ri := acctest.RandInt() | ||
location := testLocation() | ||
config := testAzureRMNotificationHubAuthorizationRule_manage(ri, location) | ||
|
||
resource.Test(t, resource.TestCase{ | ||
PreCheck: func() { testAccPreCheck(t) }, | ||
Providers: testAccProviders, | ||
CheckDestroy: testCheckAzureRMNotificationHubAuthorizationRuleDestroy, | ||
Steps: []resource.TestStep{ | ||
{ | ||
Config: config, | ||
}, | ||
{ | ||
ResourceName: resourceName, | ||
ImportState: true, | ||
ImportStateVerify: true, | ||
}, | ||
}, | ||
}) | ||
} | ||
|
||
func TestAccAzureRMNotificationHubAuthorizationRule_importSend(t *testing.T) { | ||
resourceName := "azurerm_notification_hub_authorization_rule.test" | ||
|
||
ri := acctest.RandInt() | ||
location := testLocation() | ||
config := testAzureRMNotificationHubAuthorizationRule_send(ri, location) | ||
|
||
resource.Test(t, resource.TestCase{ | ||
PreCheck: func() { testAccPreCheck(t) }, | ||
Providers: testAccProviders, | ||
CheckDestroy: testCheckAzureRMNotificationHubAuthorizationRuleDestroy, | ||
Steps: []resource.TestStep{ | ||
{ | ||
Config: config, | ||
}, | ||
{ | ||
ResourceName: resourceName, | ||
ImportState: true, | ||
ImportStateVerify: true, | ||
}, | ||
}, | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
215 changes: 215 additions & 0 deletions
215
azurerm/resource_arm_notification_hub_authorization_rule.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,215 @@ | ||
package azurerm | ||
|
||
import ( | ||
"fmt" | ||
"log" | ||
|
||
"github.com/Azure/azure-sdk-for-go/services/notificationhubs/mgmt/2017-04-01/notificationhubs" | ||
"github.com/hashicorp/terraform/helper/schema" | ||
"github.com/terraform-providers/terraform-provider-azurerm/azurerm/utils" | ||
) | ||
|
||
func resourceArmNotificationHubAuthorizationRule() *schema.Resource { | ||
return &schema.Resource{ | ||
Create: resourceArmNotificationHubAuthorizationRuleCreateUpdate, | ||
Read: resourceArmNotificationHubAuthorizationRuleRead, | ||
Update: resourceArmNotificationHubAuthorizationRuleCreateUpdate, | ||
Delete: resourceArmNotificationHubAuthorizationRuleDelete, | ||
Importer: &schema.ResourceImporter{ | ||
State: schema.ImportStatePassthrough, | ||
}, | ||
// TODO: customizeDiff for send+listen when manage selected | ||
|
||
Schema: map[string]*schema.Schema{ | ||
"name": { | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
}, | ||
|
||
"notification_hub_name": { | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
}, | ||
|
||
"namespace_name": { | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
}, | ||
|
||
"resource_group_name": resourceGroupNameSchema(), | ||
|
||
"manage": { | ||
Type: schema.TypeBool, | ||
Optional: true, | ||
Default: false, | ||
}, | ||
|
||
"send": { | ||
Type: schema.TypeBool, | ||
Optional: true, | ||
Default: false, | ||
}, | ||
|
||
"listen": { | ||
Type: schema.TypeBool, | ||
Optional: true, | ||
Default: false, | ||
}, | ||
|
||
"primary_access_key": { | ||
Type: schema.TypeString, | ||
Computed: true, | ||
}, | ||
|
||
"secondary_access_key": { | ||
Type: schema.TypeString, | ||
Computed: true, | ||
}, | ||
}, | ||
} | ||
} | ||
|
||
func resourceArmNotificationHubAuthorizationRuleCreateUpdate(d *schema.ResourceData, meta interface{}) error { | ||
client := meta.(*ArmClient).notificationHubsClient | ||
ctx := meta.(*ArmClient).StopContext | ||
|
||
name := d.Get("name").(string) | ||
notificationHubName := d.Get("notification_hub_name").(string) | ||
namespaceName := d.Get("namespace_name").(string) | ||
resourceGroup := d.Get("resource_group_name").(string) | ||
|
||
manage := d.Get("manage").(bool) | ||
send := d.Get("send").(bool) | ||
listen := d.Get("listen").(bool) | ||
rights := expandNotificationHubAuthorizationRuleRights(manage, send, listen) | ||
parameters := notificationhubs.SharedAccessAuthorizationRuleCreateOrUpdateParameters{ | ||
Properties: ¬ificationhubs.SharedAccessAuthorizationRuleProperties{ | ||
Rights: rights, | ||
}, | ||
} | ||
|
||
_, err := client.CreateOrUpdateAuthorizationRule(ctx, resourceGroup, namespaceName, notificationHubName, name, parameters) | ||
if err != nil { | ||
return fmt.Errorf("Error creating Authorization Rule %q (Notification Hub %q / Namespace %q / Resource Group %q): %+v", name, notificationHubName, namespaceName, resourceGroup, err) | ||
} | ||
|
||
read, err := client.GetAuthorizationRule(ctx, resourceGroup, namespaceName, notificationHubName, name) | ||
if err != nil { | ||
return fmt.Errorf("Error retrieving Authorization Rule %q (Notification Hub %q / Namespace %q / Resource Group %q): %+v", name, notificationHubName, namespaceName, resourceGroup, err) | ||
} | ||
if read.ID == nil { | ||
return fmt.Errorf("Cannot read Authorization Rule %q (Notification Hub %q / Namespace %q / Resource Group %q) ID", name, notificationHubName, namespaceName, resourceGroup) | ||
} | ||
|
||
d.SetId(*read.ID) | ||
|
||
return resourceArmNotificationHubAuthorizationRuleRead(d, meta) | ||
} | ||
|
||
func resourceArmNotificationHubAuthorizationRuleRead(d *schema.ResourceData, meta interface{}) error { | ||
client := meta.(*ArmClient).notificationHubsClient | ||
ctx := meta.(*ArmClient).StopContext | ||
|
||
id, err := parseAzureResourceID(d.Id()) | ||
if err != nil { | ||
return err | ||
} | ||
resourceGroup := id.ResourceGroup | ||
namespaceName := id.Path["namespaces"] | ||
notificationHubName := id.Path["notificationHubs"] | ||
name := id.Path["AuthorizationRules"] | ||
|
||
resp, err := client.GetAuthorizationRule(ctx, resourceGroup, namespaceName, notificationHubName, name) | ||
if err != nil { | ||
if utils.ResponseWasNotFound(resp.Response) { | ||
log.Printf("[DEBUG] Authorization Rule %q was not found in Notification Hub %q / Namespace %q / Resource Group %q", name, notificationHubName, namespaceName, resourceGroup) | ||
d.SetId("") | ||
return nil | ||
} | ||
|
||
return fmt.Errorf("Error making Read request on Authorization Rule %q (Notification Hub %q / Namespace %q / Resource Group %q): %+v", name, notificationHubName, namespaceName, resourceGroup, err) | ||
} | ||
|
||
d.Set("name", resp.Name) | ||
d.Set("notification_hub_name", notificationHubName) | ||
d.Set("namespace_name", namespaceName) | ||
d.Set("resource_group_name", resourceGroup) | ||
|
||
if props := resp.SharedAccessAuthorizationRuleProperties; props != nil { | ||
manage, send, listen := flattenNotificationHubAuthorizationRuleRights(props.Rights) | ||
d.Set("manage", manage) | ||
d.Set("send", send) | ||
d.Set("listen", listen) | ||
|
||
d.Set("primary_access_key", props.PrimaryKey) | ||
d.Set("secondary_access_key", props.SecondaryKey) | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func resourceArmNotificationHubAuthorizationRuleDelete(d *schema.ResourceData, meta interface{}) error { | ||
client := meta.(*ArmClient).notificationHubsClient | ||
ctx := meta.(*ArmClient).StopContext | ||
|
||
id, err := parseAzureResourceID(d.Id()) | ||
if err != nil { | ||
return err | ||
} | ||
resourceGroup := id.ResourceGroup | ||
namespaceName := id.Path["namespaces"] | ||
notificationHubName := id.Path["notificationHubs"] | ||
name := id.Path["AuthorizationRules"] | ||
|
||
resp, err := client.DeleteAuthorizationRule(ctx, resourceGroup, namespaceName, notificationHubName, name) | ||
if err != nil { | ||
if !utils.ResponseWasNotFound(resp) { | ||
return fmt.Errorf("Error deleting Authorization Rule %q (Notification Hub %q / Namespace %q / Resource Group %q): %+v", name, notificationHubName, namespaceName, resourceGroup, err) | ||
} | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func expandNotificationHubAuthorizationRuleRights(manage bool, send bool, listen bool) *[]notificationhubs.AccessRights { | ||
rights := make([]notificationhubs.AccessRights, 0) | ||
|
||
if manage { | ||
rights = append(rights, notificationhubs.Manage) | ||
} | ||
|
||
if send { | ||
rights = append(rights, notificationhubs.Send) | ||
} | ||
|
||
if listen { | ||
rights = append(rights, notificationhubs.Listen) | ||
} | ||
|
||
return &rights | ||
} | ||
|
||
func flattenNotificationHubAuthorizationRuleRights(input *[]notificationhubs.AccessRights) (manage bool, send bool, listen bool) { | ||
if input == nil { | ||
return | ||
} | ||
|
||
for _, right := range *input { | ||
switch right { | ||
case notificationhubs.Manage: | ||
manage = true | ||
continue | ||
case notificationhubs.Send: | ||
send = true | ||
continue | ||
case notificationhubs.Listen: | ||
listen = true | ||
continue | ||
} | ||
} | ||
|
||
return | ||
} |
Oops, something went wrong.