Skip to content

Commit

Permalink
Remove collection reference inside the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alinabuzachis authored and goneri committed Sep 23, 2022
1 parent e9a78b7 commit 63dfc7a
Show file tree
Hide file tree
Showing 2 changed files with 746 additions and 717 deletions.
21 changes: 10 additions & 11 deletions tests/integration/targets/rds_option_group/defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
---
option_group_name: "{{ resource_prefix }}rds-option-group"
option_group_name: '{{ resource_prefix }}rds-option-group'
engine_name: mysql
major_engine_version: 5.6
option_group_description: "{{ resource_prefix }}rds-option-group test"
instance_id: "{{ resource_prefix }}"
option_group_description: '{{ resource_prefix }}rds-option-group test'
instance_id: '{{ resource_prefix }}'
username: test
password: test12345678
db_instance_class: db.t2.small
storage_encrypted_db_instance_class: db.t2.small
allocated_storage: 20
vpc_name: "{{ resource_prefix }}-vpc"
vpc_seed: "{{ resource_prefix }}"
vpc_cidr: "10.0.0.0/16"
subnet_cidr: "10.0.{{ 256 | random(seed=vpc_seed) }}.0/24"
sg_1_name: "{{ resource_prefix }}-sg-1"
sg_2_name: "{{ resource_prefix }}-sg-2"
sg_3_name: "{{ resource_prefix }}-sg-3"
vpc_name: '{{ resource_prefix }}-vpc'
vpc_seed: '{{ resource_prefix }}'
vpc_cidr: 10.0.0.0/16
subnet_cidr: 10.0.{{ 256 | random(seed=vpc_seed) }}.0/24
sg_1_name: '{{ resource_prefix }}-sg-1'
sg_2_name: '{{ resource_prefix }}-sg-2'
sg_3_name: '{{ resource_prefix }}-sg-3'
Loading

0 comments on commit 63dfc7a

Please sign in to comment.