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

add call_as support for stackset #22440

Merged
merged 5 commits into from
Feb 14, 2022
Merged
Changes from 1 commit
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
12 changes: 12 additions & 0 deletions internal/service/cloudformation/stack_set_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ func TestAccCloudFormationStackSet_basic(t *testing.T) {
ImportState: true,
ImportStateVerify: true,
ImportStateVerifyIgnore: []string{
"call_as",
ewbankkit marked this conversation as resolved.
Show resolved Hide resolved
"template_url",
},
},
Expand Down Expand Up @@ -108,6 +109,7 @@ func TestAccCloudFormationStackSet_administrationRoleARN(t *testing.T) {
ImportState: true,
ImportStateVerify: true,
ImportStateVerifyIgnore: []string{
"call_as",
"template_url",
},
},
Expand Down Expand Up @@ -146,6 +148,7 @@ func TestAccCloudFormationStackSet_description(t *testing.T) {
ImportState: true,
ImportStateVerify: true,
ImportStateVerifyIgnore: []string{
"call_as",
"template_url",
},
},
Expand Down Expand Up @@ -184,6 +187,7 @@ func TestAccCloudFormationStackSet_executionRoleName(t *testing.T) {
ImportState: true,
ImportStateVerify: true,
ImportStateVerifyIgnore: []string{
"call_as",
"template_url",
},
},
Expand Down Expand Up @@ -239,6 +243,7 @@ func TestAccCloudFormationStackSet_name(t *testing.T) {
ImportState: true,
ImportStateVerify: true,
ImportStateVerifyIgnore: []string{
"call_as",
"template_url",
},
},
Expand Down Expand Up @@ -278,6 +283,7 @@ func TestAccCloudFormationStackSet_parameters(t *testing.T) {
ImportState: true,
ImportStateVerify: true,
ImportStateVerifyIgnore: []string{
"call_as",
"template_url",
},
},
Expand Down Expand Up @@ -338,6 +344,7 @@ func TestAccCloudFormationStackSet_Parameters_default(t *testing.T) {
ImportState: true,
ImportStateVerify: true,
ImportStateVerifyIgnore: []string{
"call_as",
"template_url",
},
},
Expand Down Expand Up @@ -390,6 +397,7 @@ func TestAccCloudFormationStackSet_Parameters_noEcho(t *testing.T) {
ImportState: true,
ImportStateVerify: true,
ImportStateVerifyIgnore: []string{
"call_as",
"template_url",
},
},
Expand Down Expand Up @@ -440,6 +448,7 @@ func TestAccCloudFormationStackSet_PermissionModel_serviceManaged(t *testing.T)
ImportState: true,
ImportStateVerify: true,
ImportStateVerifyIgnore: []string{
"call_as",
"template_url",
},
},
Expand Down Expand Up @@ -471,6 +480,7 @@ func TestAccCloudFormationStackSet_tags(t *testing.T) {
ImportState: true,
ImportStateVerify: true,
ImportStateVerifyIgnore: []string{
"call_as",
"template_url",
},
},
Expand Down Expand Up @@ -526,6 +536,7 @@ func TestAccCloudFormationStackSet_templateBody(t *testing.T) {
ImportState: true,
ImportStateVerify: true,
ImportStateVerifyIgnore: []string{
"call_as",
"template_url",
},
},
Expand Down Expand Up @@ -565,6 +576,7 @@ func TestAccCloudFormationStackSet_templateURL(t *testing.T) {
ImportState: true,
ImportStateVerify: true,
ImportStateVerifyIgnore: []string{
"call_as",
"template_url",
},
},
Expand Down