Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

azuread_application_password: deprecate application_id in favour of application_object_id #107

Merged
merged 8 commits into from
Jun 12, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions azuread/data_service_principal.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ package azuread
import (
"fmt"

"github.com/Azure/azure-sdk-for-go/services/graphrbac/1.6/graphrbac"
"github.com/hashicorp/terraform/helper/schema"

"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/ar"
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/graph"
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/validate"

"github.com/Azure/azure-sdk-for-go/services/graphrbac/1.6/graphrbac"
"github.com/hashicorp/terraform/helper/schema"
)

func dataServicePrincipal() *schema.Resource {
Expand Down
1 change: 0 additions & 1 deletion azuread/data_user_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import (
"testing"

"github.com/hashicorp/terraform/helper/acctest"

"github.com/hashicorp/terraform/helper/resource"
)

Expand Down
1 change: 1 addition & 0 deletions azuread/resource_application.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import (
"github.com/google/uuid"
"github.com/hashicorp/terraform/helper/schema"
"github.com/hashicorp/terraform/helper/validation"

"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/ar"
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/graph"
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/p"
Expand Down
76 changes: 73 additions & 3 deletions azuread/resource_application_password.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@ import (

"github.com/Azure/azure-sdk-for-go/services/graphrbac/1.6/graphrbac"
"github.com/hashicorp/terraform/helper/schema"
"github.com/hashicorp/terraform/helper/validation"

"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/ar"
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/graph"
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/tf"
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/validate"
)

func resourceApplicationPassword() *schema.Resource {
Expand All @@ -23,15 +25,82 @@ func resourceApplicationPassword() *schema.Resource {
State: schema.ImportStatePassthrough,
},

Schema: graph.PasswordResourceSchema("application"),
// Schema: graph.PasswordResourceSchema("application_object"), //todo switch back to this in 1.0
Schema: map[string]*schema.Schema{
"application_id": {
Type: schema.TypeString,
Optional: true,
ForceNew: true,
Computed: true,
ValidateFunc: validate.UUID,
Deprecated: "Deprecated in favour of `application_object_id` to prevent confusion",
ConflictsWith: []string{"application_id"},
},

"application_object_id": {
Type: schema.TypeString,
Optional: true,
Computed: true,
ForceNew: true,
ValidateFunc: validate.UUID,
ConflictsWith: []string{"application_object_id"},
},

"key_id": {
Type: schema.TypeString,
Optional: true,
Computed: true,
ForceNew: true,
ValidateFunc: validate.UUID,
},

"value": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
Sensitive: true,
ValidateFunc: validate.NoEmptyStrings,
},

"start_date": {
Type: schema.TypeString,
Optional: true,
Computed: true,
ForceNew: true,
ValidateFunc: validation.ValidateRFC3339TimeString,
},

"end_date": {
Type: schema.TypeString,
Optional: true,
Computed: true,
ForceNew: true,
ConflictsWith: []string{"end_date_relative"},
ValidateFunc: validation.ValidateRFC3339TimeString,
},

"end_date_relative": {
Type: schema.TypeString,
Optional: true,
ForceNew: true,
ConflictsWith: []string{"end_date"},
ValidateFunc: validate.NoEmptyStrings,
},
},
}
}

func resourceApplicationPasswordCreate(d *schema.ResourceData, meta interface{}) error {
client := meta.(*ArmClient).applicationsClient
ctx := meta.(*ArmClient).StopContext

objectId := d.Get("application_id").(string)
objectId := d.Get("application_object_id").(string)
if objectId == "" { // todo remove in 1.0
objectId = d.Get("application_id").(string)
}
if objectId == "" {
return fmt.Errorf("one of `application_object_id` or `application_id` must be specified")
}

cred, err := graph.PasswordCredentialForResource(d)
if err != nil {
Expand Down Expand Up @@ -95,7 +164,8 @@ func resourceApplicationPasswordRead(d *schema.ResourceData, meta interface{}) e
}

// todo, move this into a graph helper function?
d.Set("application_id", id.ObjectId)
d.Set("application_object_id", id.ObjectId)
d.Set("application_id", id.ObjectId) //todo remove in 2.0
d.Set("key_id", id.KeyId)

if endDate := credential.EndDate; endDate != nil {
Expand Down
70 changes: 53 additions & 17 deletions azuread/resource_application_password_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ import (
"fmt"
"testing"

"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/ar"
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/graph"

"github.com/google/uuid"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"

"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/ar"
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/graph"
)

func testCheckADApplicationPasswordExists(name string) resource.TestCheckFunc { //nolint unparam
Expand Down Expand Up @@ -101,6 +101,30 @@ func TestAccAzureADApplicationPassword_basic(t *testing.T) {
})
}

func TestAccAzureADApplicationPassword_basicOld(t *testing.T) {
resourceName := "azuread_application_password.test"
applicationId := uuid.New().String()
value := uuid.New().String()

resource.ParallelTest(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders,
CheckDestroy: testCheckADApplicationPasswordCheckDestroy,
Steps: []resource.TestStep{
{
Config: testAccADObjectPasswordApplication_basicOld(applicationId, value),
Check: resource.ComposeTestCheckFunc(
// can't assert on Value since it's not returned
testCheckADApplicationPasswordExists(resourceName),
resource.TestCheckResourceAttrSet(resourceName, "start_date"),
resource.TestCheckResourceAttrSet(resourceName, "key_id"),
resource.TestCheckResourceAttr(resourceName, "end_date", "2020-01-01T01:02:03Z"),
),
},
},
})
}

func TestAccAzureADApplicationPassword_requiresImport(t *testing.T) {
if !requireResourcesToBeImported {
t.Skip("Skipping since resources aren't required to be imported")
Expand Down Expand Up @@ -191,9 +215,21 @@ func testAccADObjectPasswordApplication_basic(applicationId, value string) strin
%s

resource "azuread_application_password" "test" {
application_id = "${azuread_application.test.id}"
value = "%s"
end_date = "2020-01-01T01:02:03Z"
application_object_id = "${azuread_application.test.id}"
value = "%s"
end_date = "2020-01-01T01:02:03Z"
}
`, testAccADApplicationPassword_template(applicationId), value)
}

func testAccADObjectPasswordApplication_basicOld(applicationId, value string) string {
return fmt.Sprintf(`
%s

resource "azuread_application_password" "test" {
application_id = "${azuread_application.test.id}"
value = "%s"
end_date = "2020-01-01T01:02:03Z"
}
`, testAccADApplicationPassword_template(applicationId), value)
}
Expand All @@ -204,10 +240,10 @@ func testAccADApplicationPassword_requiresImport(applicationId, value string) st
%s

resource "azuread_application_password" "import" {
application_id = "${azuread_application_password.test.application_id}"
key_id = "${azuread_application_password.test.key_id}"
value = "${azuread_application_password.test.value}"
end_date = "${azuread_application_password.test.end_date}"
application_object_id = "${azuread_application_password.test.application_id}"
key_id = "${azuread_application_password.test.key_id}"
value = "${azuread_application_password.test.value}"
end_date = "${azuread_application_password.test.end_date}"
}
`, template)
}
Expand All @@ -217,10 +253,10 @@ func testAccADApplicationPassword_customKeyId(applicationId, keyId, value string
%s

resource "azuread_application_password" "test" {
application_id = "${azuread_application.test.id}"
key_id = "%s"
value = "%s"
end_date = "2020-01-01T01:02:03Z"
application_object_id = "${azuread_application.test.id}"
key_id = "%s"
value = "%s"
end_date = "2020-01-01T01:02:03Z"
}
`, testAccADApplicationPassword_template(applicationId), keyId, value)
}
Expand All @@ -230,9 +266,9 @@ func testAccADApplicationPassword_relativeEndDate(applicationId, value string) s
%s

resource "azuread_application_password" "test" {
application_id = "${azuread_application.test.id}"
value = "%s"
end_date_relative = "8760h"
application_object_id = "${azuread_application.test.id}"
value = "%s"
end_date_relative = "8760h"
}
`, testAccADApplicationPassword_template(applicationId), value)
}
1 change: 1 addition & 0 deletions azuread/resource_application_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import (
"github.com/google/uuid"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"

"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/ar"
)

Expand Down
5 changes: 3 additions & 2 deletions azuread/resource_service_principal.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ func resourceServicePrincipal() *schema.Resource {
Computed: true,
},

"oauth2_permissions": graph.SchemaOauth2Permissions(),

"object_id": {
Type: schema.TypeString,
Computed: true,
},

"oauth2_permissions": graph.SchemaOauth2Permissions(),

"tags": {
Type: schema.TypeSet,
Optional: true,
Expand Down Expand Up @@ -113,6 +113,7 @@ func resourceServicePrincipalRead(d *schema.ResourceData, meta interface{}) erro
d.Set("application_id", app.AppID)
d.Set("display_name", app.DisplayName)
d.Set("object_id", app.ObjectID)

// tags doesn't exist as a property, so extract it
if err := d.Set("tags", app.Tags); err != nil {
return fmt.Errorf("Error setting `tags`: %+v", err)
Expand Down
6 changes: 3 additions & 3 deletions azuread/resource_service_principal_password_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ import (
"fmt"
"testing"

"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/ar"
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/graph"

"github.com/google/uuid"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"

"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/ar"
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/graph"
)

func testCheckADServicePrincipalPasswordExists(name string) resource.TestCheckFunc { //nolint unparam
Expand Down
4 changes: 2 additions & 2 deletions azuread/resource_service_principal_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import (
"fmt"
"testing"

"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/ar"

"github.com/google/uuid"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"

"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/ar"
)

func TestAccAzureADServicePrincipal_basic(t *testing.T) {
Expand Down
1 change: 0 additions & 1 deletion azuread/resource_user_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import (
"testing"

"github.com/hashicorp/terraform/helper/acctest"

"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"

Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/application_password.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ resource "azuread_application_password" "example" {

The following arguments are supported:

* `object_id` - (Required) The Object ID of the Application for which this password should be created. Changing this field forces a new resource to be created.
* `application_object_id` - (Required) The Object ID of the Application for which this password should be created. Changing this field forces a new resource to be created.

* `value` - (Required) The Password for this Application .

Expand Down