Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- EBS
- DELETE
- x-real-ip
- onpromise
- 리눅스
- Query
- deragistration
- Linux
- 센토스
- Windows
- terraform
- awscli
- EC2
- resize2fs
- 인스턴스타입
- port
- fdisk
- Error
- ntp
- 아마존
- nvme
- DISK
- RDS
- VPN
- xen
- centos
- mysql
- x-forward-for
- AWS
- ubuntu
Archives
- Today
- Total
Cloud
테라폼에서 RDS 메세지 구독 설정 시 주의 사항 본문
RDS 구독 메세지를 테라폼을 적용해서 사용 중인데 리소스를 찾지 못했던 경험을 공유 합니다.
이번에는 source_ids 를 정할때 aws 의 ids 가 아닌 identifier 를 입력해야 합니다. 자꾸 ids 를 다시 확인하라고 해서, 문제 해결에 시간이 걸렸습니다.
문법이나 내용은 맞는 것 같은데 실제 리소스를 찾지 못할때는 아래처럼 환경 설정이 어떻게 되어 있나 확인하고 적절한 리소스를 대입해서 찾아보면 좋습니다.
terraform state show aws_db_instance.logdb01
정상적으로 rds 에 sns 구독을 연결 시키는 코드입니다.
resource "aws_sns_topic" "rds_events_topic" {
name = "rds-events-topic"
}
resource "aws_sns_topic_subscription" "email_subscription" {
topic_arn = aws_sns_topic.rds_events_topic.arn
protocol = "email"
endpoint = "email@email.co.kr" # Recieve E-mail
depends_on = [aws_sns_topic.rds_events_topic] # SNS topic depend
}
resource "aws_db_event_subscription" "rds_event_subscription" {
name = "rds-event-subscription"
sns_topic = aws_sns_topic.rds_events_topic.arn
source_type = "db-instance"
event_categories = ["availability", "configuration change", "failover", "failure", "maintenance", "notification", "recovery", "restoration"]
source_ids = [aws_db_instance.logdb01.identifier,
aws_db_instance.gamedb01.identifier
]
depends_on = [
aws_db_instance.logdb01, #instance depend. Can be deleted.
aws_db_instance.gamedb01,
aws_sns_topic_subscription.email_subscription
]
tags = {
Name = "rds-event-subscription"
}
}
'클라우드' 카테고리의 다른 글
Crash 난 POD 를 일괄 삭제 (0) | 2024.08.20 |
---|---|
aws cli elb registration / deregistration (1) | 2024.07.23 |
AWS RDS master 계정 추가생성 (0) | 2022.12.22 |
awscli 를 이용하여 여러대의 ec2 사양 변경 (resize) (0) | 2021.09.14 |
aws cli 로 mysql rds 생성 하기 (0) | 2020.07.20 |
Comments