-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add more import paths for Terraform google_service_account (#566)
Merged PR #566.
- Loading branch information
1 parent
ab55b43
commit 0a325ab
Showing
4 changed files
with
151 additions
and
6 deletions.
There are no files selected for viewing
Submodule terraform
updated
from 05c0ec to 80bd51
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
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
128 changes: 128 additions & 0 deletions
128
provider/terraform/tests/resource_google_service_account_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,128 @@ | ||
package google | ||
|
||
import ( | ||
"fmt" | ||
"testing" | ||
|
||
"github.com/hashicorp/terraform/helper/acctest" | ||
"github.com/hashicorp/terraform/helper/resource" | ||
"github.com/hashicorp/terraform/terraform" | ||
) | ||
|
||
// Test that a service account resource can be created, updated, and destroyed | ||
func TestAccServiceAccount_basic(t *testing.T) { | ||
t.Parallel() | ||
|
||
accountId := "a" + acctest.RandString(10) | ||
uniqueId := "" | ||
displayName := "Terraform Test" | ||
displayName2 := "Terraform Test Update" | ||
project := getTestProjectFromEnv() | ||
expectedEmail := fmt.Sprintf("%s@%s.iam.gserviceaccount.com", accountId, project) | ||
resource.Test(t, resource.TestCase{ | ||
PreCheck: func() { testAccPreCheck(t) }, | ||
Providers: testAccProviders, | ||
Steps: []resource.TestStep{ | ||
// The first step creates a basic service account | ||
resource.TestStep{ | ||
Config: testAccServiceAccountBasic(accountId, displayName), | ||
Check: resource.ComposeTestCheckFunc( | ||
resource.TestCheckResourceAttr( | ||
"google_service_account.acceptance", "project", project), | ||
), | ||
}, | ||
resource.TestStep{ | ||
ResourceName: "google_service_account.acceptance", | ||
ImportStateId: fmt.Sprintf("projects/%s/serviceAccounts/%s", project, expectedEmail), | ||
ImportState: true, | ||
ImportStateVerify: true, | ||
}, | ||
resource.TestStep{ | ||
ResourceName: "google_service_account.acceptance", | ||
ImportStateId: fmt.Sprintf("%s/%s", project, expectedEmail), | ||
ImportState: true, | ||
ImportStateVerify: true, | ||
}, | ||
resource.TestStep{ | ||
ResourceName: "google_service_account.acceptance", | ||
ImportStateId: expectedEmail, | ||
ImportState: true, | ||
ImportStateVerify: true, | ||
}, | ||
// The second step updates the service account | ||
resource.TestStep{ | ||
Config: testAccServiceAccountBasic(accountId, displayName2), | ||
Check: resource.ComposeTestCheckFunc( | ||
resource.TestCheckResourceAttr( | ||
"google_service_account.acceptance", "project", project), | ||
testAccStoreServiceAccountUniqueId(&uniqueId), | ||
), | ||
}, | ||
resource.TestStep{ | ||
ResourceName: "google_service_account.acceptance", | ||
ImportState: true, | ||
ImportStateVerify: true, | ||
}, | ||
// The third step explicitely adds the same default project to the service account configuration | ||
// and ensure the service account is not recreated by comparing the value of its unique_id with the one from the previous step | ||
resource.TestStep{ | ||
Config: testAccServiceAccountWithProject(project, accountId, displayName2), | ||
Check: resource.ComposeTestCheckFunc( | ||
resource.TestCheckResourceAttr( | ||
"google_service_account.acceptance", "project", project), | ||
resource.TestCheckResourceAttrPtr( | ||
"google_service_account.acceptance", "unique_id", &uniqueId), | ||
), | ||
}, | ||
resource.TestStep{ | ||
ResourceName: "google_service_account.acceptance", | ||
ImportState: true, | ||
ImportStateVerify: true, | ||
}, | ||
}, | ||
}) | ||
} | ||
|
||
func testAccStoreServiceAccountUniqueId(uniqueId *string) resource.TestCheckFunc { | ||
return func(s *terraform.State) error { | ||
*uniqueId = s.RootModule().Resources["google_service_account.acceptance"].Primary.Attributes["unique_id"] | ||
return nil | ||
} | ||
} | ||
|
||
func testAccServiceAccountBasic(account, name string) string { | ||
return fmt.Sprintf(` | ||
resource "google_service_account" "acceptance" { | ||
account_id = "%v" | ||
display_name = "%v" | ||
} | ||
`, account, name) | ||
} | ||
|
||
func testAccServiceAccountWithProject(project, account, name string) string { | ||
return fmt.Sprintf(` | ||
resource "google_service_account" "acceptance" { | ||
project = "%v" | ||
account_id = "%v" | ||
display_name = "%v" | ||
} | ||
`, project, account, name) | ||
} | ||
|
||
func testAccServiceAccountPolicy(account, project string) string { | ||
return fmt.Sprintf(` | ||
resource "google_service_account" "acceptance" { | ||
account_id = "%v" | ||
display_name = "%v" | ||
} | ||
data "google_iam_policy" "service_account" { | ||
binding { | ||
role = "roles/iam.serviceAccountActor" | ||
members = [ | ||
"serviceAccount:%v@%v.iam.gserviceaccount.com", | ||
] | ||
} | ||
} | ||
`, account, account, account, project) | ||
} |