- A
Hardcode the instance security group CIDR in the database security group ingress rule.
Why wrong: Hardcoding is not dynamic and may become outdated.
- B
Use Fn::GetAtt or Ref to reference the instance security group in the database security group rule.
Intrinsic functions allow referencing resources within the same template.
- C
Use AWS CloudTrail to monitor and alert on security group changes.
Why wrong: Monitoring does not enforce configuration.
- D
Use a CloudFormation parameter to pass the instance security group ID to the database security group rule.
Parameters allow dynamic values during stack operations.
- E
Create a separate security group rule outside of CloudFormation using the AWS CLI.
Why wrong: This rule would be out of sync with the template.
Quick Answer
The answer is to use a CloudFormation parameter to pass the instance security group ID to the database security group rule, and to use the Fn::GetAtt intrinsic function to retrieve the security group ID dynamically. These two methods ensure correct security group rules in CloudFormation with dynamic references, because they avoid hardcoded values and instead resolve the security group ID at stack creation or update time. On the AWS Certified DevOps Engineer Professional DOP-C02 exam, this tests your understanding of intrinsic functions and parameter-driven templates to maintain idempotent, update-safe infrastructure. A common trap is assuming that hardcoding IP addresses or using external rules will remain consistent across stack updates, but CloudFormation cannot manage resources it did not create. Remember the memory tip: "GetAtt or Param, never hardcode the security group jam."
DOP-C02 Configuration Management and IaC Practice Question
This DOP-C02 practice question tests your understanding of configuration management and iac. Match the stated requirement to the specific cloud service, access model, or configuration option — many options are valid in isolation but not for this scenario. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
A DevOps team uses AWS CloudFormation to deploy a web application stack. The stack includes an EC2 instance, an RDS database, and an Application Load Balancer. After a successful deployment, they notice that the database security group does not allow inbound traffic from the instance security group. The team wants to enforce that the database security group always allows traffic only from the instance security group, even if the stack is updated. Which TWO methods should the team use? (Choose TWO.)
Clue words in this question
Noticing these words before you look at the options changes how you read each choice.
Clue:
"always"Why it matters: Absolute qualifier. An answer using 'always' is only correct if there are genuinely no exceptions — absolute statements are often wrong in networking.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
Use Fn::GetAtt or Ref to reference the instance security group in the database security group rule.
Options B and D are correct. Option B uses a parameter to pass the instance security group ID into the database security group rule, ensuring dynamic referencing. Option D uses a Fn::GetAtt to retrieve the security group ID and reference it in the rule. Option A is incorrect because hardcoding IP addresses is not dynamic. Option C is incorrect because a security group rule outside the template is not managed by CloudFormation. Option E is incorrect because VPC flow logs do not enforce security group rules.
Key principle: Count usable hosts — not total addresses — and remember that the network and broadcast addresses are not available to hosts in standard IPv4 subnets.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Hardcode the instance security group CIDR in the database security group ingress rule.
Why it's wrong here
Hardcoding is not dynamic and may become outdated.
- ✓
Use Fn::GetAtt or Ref to reference the instance security group in the database security group rule.
Why this is correct
Intrinsic functions allow referencing resources within the same template.
Clue confirmation
The clue word "always" in the question point toward this answer.
Related concept
CIDR notation defines the prefix length.
- ✗
Use AWS CloudTrail to monitor and alert on security group changes.
Why it's wrong here
Monitoring does not enforce configuration.
- ✓
Use a CloudFormation parameter to pass the instance security group ID to the database security group rule.
Why this is correct
Parameters allow dynamic values during stack operations.
Clue confirmation
The clue word "always" in the question point toward this answer.
Related concept
CIDR notation defines the prefix length.
- ✗
Create a separate security group rule outside of CloudFormation using the AWS CLI.
Why it's wrong here
This rule would be out of sync with the template.
Common exam traps
Common exam trap: usable hosts are not the same as total addresses
Subnetting questions often tempt you into counting all addresses. In normal IPv4 subnets, the network and broadcast addresses are not usable host addresses.
Detailed technical explanation
How to think about this question
Subnetting questions test whether you can identify the network, broadcast address, usable range, mask and correct subnet. Slow down enough to calculate the block size correctly.
KKey Concepts to Remember
- CIDR notation defines the prefix length.
- Block size helps identify subnet boundaries.
- Network and broadcast addresses are not usable hosts in normal IPv4 subnets.
- The required host count determines the smallest suitable subnet.
TExam Day Tips
- Write the block size before choosing the subnet.
- Check whether the question asks for hosts, subnets or a specific address range.
- Do not confuse /24, /25, /26 and /27 host counts.
Key takeaway
Count usable hosts — not total addresses — and remember that the network and broadcast addresses are not available to hosts in standard IPv4 subnets.
Real-world example
How this comes up in practice
A healthcare organisation deploys an application with a public-facing web tier and a private database tier. The database subnet has no public IP and only accepts connections from the web tier's security group. Questions like this test whether you can design cloud network isolation using VNets/VPCs, subnets, and security group rules.
What to study next
Got this wrong? Here's your next step.
Review block sizes, usable host formulas (2^n − 2), and how to find network and broadcast addresses for /24 through /30. Then practise related DOP-C02 subnetting questions on CIDR, address ranges, and subnet selection.
- →
Configuration Management and IaC — study guide chapter
Learn the concepts, then practise the questions
- →
Configuration Management and IaC practice questions
Targeted practice on this topic area only
- →
All DOP-C02 questions
1,740 questions across all exam domains
- →
AWS Certified DevOps Engineer Professional DOP-C02 study guide
Full concept coverage aligned to exam objectives
- →
DOP-C02 practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related DOP-C02 practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Configuration Management and IaC practice questions
Practise DOP-C02 questions linked to Configuration Management and IaC.
Resilient Cloud Solutions practice questions
Practise DOP-C02 questions linked to Resilient Cloud Solutions.
Monitoring and Logging practice questions
Practise DOP-C02 questions linked to Monitoring and Logging.
Incident and Event Response practice questions
Practise DOP-C02 questions linked to Incident and Event Response.
Security and Compliance practice questions
Practise DOP-C02 questions linked to Security and Compliance.
SDLC Automation practice questions
Practise DOP-C02 questions linked to SDLC Automation.
DOP-C02 fundamentals practice questions
Practise DOP-C02 questions linked to DOP-C02 fundamentals.
DOP-C02 scenario practice questions
Practise DOP-C02 questions linked to DOP-C02 scenario.
DOP-C02 troubleshooting practice questions
Practise DOP-C02 questions linked to DOP-C02 troubleshooting.
Practice this exam
Start a free DOP-C02 practice session
Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.
FAQ
Questions learners often ask
What does this DOP-C02 question test?
Configuration Management and IaC — This question tests Configuration Management and IaC — CIDR notation defines the prefix length..
What is the correct answer to this question?
The correct answer is: Use Fn::GetAtt or Ref to reference the instance security group in the database security group rule. — Options B and D are correct. Option B uses a parameter to pass the instance security group ID into the database security group rule, ensuring dynamic referencing. Option D uses a Fn::GetAtt to retrieve the security group ID and reference it in the rule. Option A is incorrect because hardcoding IP addresses is not dynamic. Option C is incorrect because a security group rule outside the template is not managed by CloudFormation. Option E is incorrect because VPC flow logs do not enforce security group rules.
What should I do if I get this DOP-C02 question wrong?
Review block sizes, usable host formulas (2^n − 2), and how to find network and broadcast addresses for /24 through /30. Then practise related DOP-C02 subnetting questions on CIDR, address ranges, and subnet selection.
Are there clue words in this question I should notice?
Yes — watch for: "always". Absolute qualifier. An answer using 'always' is only correct if there are genuinely no exceptions — absolute statements are often wrong in networking.
What is the key concept behind this question?
CIDR notation defines the prefix length.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Last reviewed: Jun 20, 2026
This DOP-C02 practice question is part of Courseiva's free Amazon Web Services certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the DOP-C02 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.