Skip to content

Commit d1aca35

Browse files
committed
Automation Toolkit Release v2025.1.0
1 parent ee6e8eb commit d1aca35

File tree

5 files changed

+8
-10
lines changed

5 files changed

+8
-10
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ ARG DOWNLOAD_PROVIDER=YES
1919
ARG TF_OCI_PROVIDER=6.30.0
2020
ARG TF_NULL_PROVIDER=3.2.3
2121

22-
RUN microdnf install -y sudo && \
22+
RUN microdnf update -y && \
23+
microdnf install -y sudo && \
2324
groupadd --gid $USER_GID $USERNAME && \
2425
useradd --uid $USER_UID --gid $USER_GID -d /$USERNAME -m $USERNAME && \
2526
echo $USERNAME ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/$USERNAME && \

cd3_automation_toolkit/Database/templates/mysql-template

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,10 @@ mysql_db_system = {
2424
mysql_db_system_availability_domain = "{{ availability_domain }}"
2525
mysql_db_system_fault_domain = "{{ fault_domain }}"
2626
configuration_compartment_id = "{{ configuration_compartment_id }}"
27+
configuration_id = "{{ configuration_id }}"
2728
{% if depends_on_mysql_configuration %}
28-
# Skip data source lookup for configurations created in the same Terraform run
29-
skip_datasource_lookup = true
30-
# Use the configuration name directly
31-
configuration_name = "{{ configuration_id }}"
32-
# Set an empty configuration_id to force the module to use the name
33-
configuration_id = ""
3429
# Add explicit depends_on to ensure configuration is created first
3530
depends_on = ["module.mysql_configurations[\"{{ configuration_id }}\"]"]
36-
{% else %}
37-
configuration_id = "{{ configuration_id }}"
3831
{% endif %}
3932
mysql_shape_name = "{{ shape }}"
4033
vcn_names = "{{ vcn_names }}"

cd3_automation_toolkit/Release-Notes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Apr 4th, 2024
88
4. Moved compartment filter before showing export options to make it common for all services when using toolkit with CLI.
99
5. Running Create/Modify Network through Jenkins will automatically call export of rules after successful terraform apply.
1010
This was a manual process earlier.
11-
11+
6. Small bug fixes wrt RPC, Block Volumes
1212

1313

1414
-------------------------------------
Binary file not shown.

cd3_automation_toolkit/setUpOCI.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,10 @@ def get_tags_list(resource_name=[]):
163163
input_tags_list = input(tags_list_str.format(resource_name))
164164

165165
input_tags_list = list(map(lambda x: x.strip(), input_tags_list.split(','))) if input_tags_list else []
166+
if input_tags_list ==[]:
167+
print("\nFetching OCI resources with all Tags...")
168+
else:
169+
print("\nFetching OCI Resources with Tags... " + str(input_tags_list))
166170
return input_tags_list
167171

168172

0 commit comments

Comments
 (0)