File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
14
14
### Changed
15
15
16
16
- Dynamically calculate CAPI and CAPA versions from go cache, so that we use the right path when installing the CRDs during tests.
17
+ - Add tags to VPC created for acceptance tests.
17
18
18
19
### Fixed
19
20
Original file line number Diff line number Diff line change @@ -157,6 +157,17 @@ func (f *Fixture) Teardown() error {
157
157
func (f * Fixture ) createNetwork () Network {
158
158
createVpcOutput , err := f .EC2Client .CreateVpc (& ec2.CreateVpcInput {
159
159
CidrBlock : awssdk .String (ClusterVCPCIDR ),
160
+ TagSpecifications : []* ec2.TagSpecification {
161
+ {
162
+ ResourceType : awssdk .String (ec2 .ResourceTypeVpc ),
163
+ Tags : []* ec2.Tag {
164
+ {
165
+ Key : awssdk .String ("aws-resolver-rules-operator.giantswarm.io/tests" ),
166
+ Value : awssdk .String ("acceptance" ),
167
+ },
168
+ },
169
+ },
170
+ },
160
171
})
161
172
Expect (err ).NotTo (HaveOccurred ())
162
173
You can’t perform that action at this time.
0 commit comments