Removed random provider frm iam policy attachment test
This commit is contained in:
parent
fae435c5d8
commit
e2d7d5fc68
|
@ -6,7 +6,6 @@ import (
|
|||
|
||||
"github.com/aws/aws-sdk-go/aws"
|
||||
"github.com/aws/aws-sdk-go/service/iam"
|
||||
randomprovider "github.com/hashicorp/terraform/builtin/providers/random"
|
||||
"github.com/hashicorp/terraform/helper/acctest"
|
||||
"github.com/hashicorp/terraform/helper/resource"
|
||||
"github.com/hashicorp/terraform/terraform"
|
||||
|
@ -44,17 +43,15 @@ func TestAccAWSPolicyAttachment_basic(t *testing.T) {
|
|||
|
||||
func TestAccAWSPolicyAttachment_paginatedEntities(t *testing.T) {
|
||||
var out iam.ListEntitiesForPolicyOutput
|
||||
rInt := acctest.RandInt()
|
||||
|
||||
resource.Test(t, resource.TestCase{
|
||||
PreCheck: func() { testAccPreCheck(t) },
|
||||
Providers: map[string]terraform.ResourceProvider{
|
||||
"aws": testAccProvider,
|
||||
"random": randomprovider.Provider(),
|
||||
},
|
||||
PreCheck: func() { testAccPreCheck(t) },
|
||||
Providers: testAccProviders,
|
||||
CheckDestroy: testAccCheckAWSPolicyAttachmentDestroy,
|
||||
Steps: []resource.TestStep{
|
||||
resource.TestStep{
|
||||
Config: testAccAWSPolicyPaginatedAttachConfig,
|
||||
Config: testAccAWSPolicyPaginatedAttachConfig(rInt),
|
||||
Check: resource.ComposeTestCheckFunc(
|
||||
testAccCheckAWSPolicyAttachmentExists("aws_iam_policy_attachment.test-paginated-attach", 101, &out),
|
||||
),
|
||||
|
@ -306,38 +303,33 @@ resource "aws_iam_policy_attachment" "test-attach" {
|
|||
}`, u1, u2, u3)
|
||||
}
|
||||
|
||||
const testAccAWSPolicyPaginatedAttachConfig = `
|
||||
resource "random_id" "user_id" {
|
||||
byte_length = 10
|
||||
}
|
||||
|
||||
func testAccAWSPolicyPaginatedAttachConfig(rInt int) string {
|
||||
return fmt.Sprintf(`
|
||||
resource "aws_iam_user" "user" {
|
||||
count = 101
|
||||
name = "${format("paged-test-user-${random_id.user_id.hex}-%d", count.index + 1)}"
|
||||
count = 101
|
||||
name = "${format("paged-test-user-%d-%%d", count.index + 1)}"
|
||||
}
|
||||
|
||||
resource "aws_iam_policy" "policy" {
|
||||
name = "test-policy"
|
||||
description = "A test policy"
|
||||
policy = <<EOF
|
||||
name = "test-policy"
|
||||
description = "A test policy"
|
||||
policy = <<EOF
|
||||
{
|
||||
"Version": "2012-10-17",
|
||||
"Statement": [
|
||||
{
|
||||
"Action": [
|
||||
"iam:ChangePassword"
|
||||
],
|
||||
"Resource": "*",
|
||||
"Effect": "Allow"
|
||||
}
|
||||
]
|
||||
"Version": "2012-10-17",
|
||||
"Statement": [
|
||||
{
|
||||
"Action": [
|
||||
"iam:ChangePassword"
|
||||
],
|
||||
"Resource": "*",
|
||||
"Effect": "Allow"
|
||||
}
|
||||
]
|
||||
}
|
||||
EOF
|
||||
}
|
||||
|
||||
resource "aws_iam_policy_attachment" "test-paginated-attach" {
|
||||
name = "test-attachment"
|
||||
users = ["${aws_iam_user.user.*.name}"]
|
||||
policy_arn = "${aws_iam_policy.policy.arn}"
|
||||
name = "test-attachment"
|
||||
users = ["${aws_iam_user.user.*.name}"]
|
||||
policy_arn = "${aws_iam_policy.policy.arn}"
|
||||
}`, rInt)
|
||||
}
|
||||
`
|
||||
|
|
Loading…
Reference in New Issue