AI 드라이브의 채팅 어시스턴트를 사용하여 Cloudflare DNS 기록 관리
고급
이것은DevOps, AI Chatbot분야의자동화 워크플로우로, 20개의 노드를 포함합니다.주로 Code, Switch, SplitOut, HttpRequest, Agent 등의 노드를 사용하며. AI 드라이브드 채팅 어시스턴트를 사용하여 Cloudflare DNS 기록 관리
사전 요구사항
- •대상 API의 인증 정보가 필요할 수 있음
- •OpenAI API Key
- •PostgreSQL 데이터베이스 연결 정보
사용된 노드 (20)
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
"meta": {
"instanceId": "fe41feb5409a7d5eb53f7743740840b086b13d9f15b9a1b3a5f34f2bb43129c3",
"templateCredsSetupCompleted": true
},
"nodes": [
{
"id": "053140b0-8397-40b4-877d-e784b7ff42d6",
"name": "메모2",
"type": "n8n-nodes-base.stickyNote",
"position": [
-560,
-96
],
"parameters": {
"color": 7,
"width": 620,
"height": 240,
"content": "# Requirements\n\nFor storing and processing of data in this flow you will need:\n\n- CloudFlare.com API key/token - for retrieving your data (https://dash.cloudflare.com/?to=/:account/api-tokens)\n- OpenAPI credentials (or any other LLM provider) saved - for agent chat\n\n\n"
},
"typeVersion": 1
},
{
"id": "94a62db1-db0f-41d6-b4ca-33c0afa77a77",
"name": "메모5",
"type": "n8n-nodes-base.stickyNote",
"position": [
-560,
160
],
"parameters": {
"color": 7,
"width": 620,
"height": 604,
"content": "# Author\n\n### Kresimir Pendic\nSenior professional, specializing in automation, AI and data analysis. \n\n### Video overview\nhttps://youtu.be/bqrxn_41K1Y\n\n## Say hi!\nhttps://www.linkedin.com/in/mkdizajn/\n\n### Check out my other templates\n### 👉 https://n8n.io/creators/kres/\n"
},
"typeVersion": 1
},
{
"id": "ee3394d5-ac45-4561-b4c0-ec68961453b9",
"name": "메모6",
"type": "n8n-nodes-base.stickyNote",
"position": [
-560,
784
],
"parameters": {
"width": 620,
"height": 140,
"content": "# Need help?\nFor getting help with this workflow, please create a topic on the community forums here:\nhttps://community.n8n.io/c/questions/"
},
"typeVersion": 1
},
{
"id": "415e9c96-1bd0-472c-b92e-3ebc1e667a62",
"name": "메모8",
"type": "n8n-nodes-base.stickyNote",
"position": [
-560,
-256
],
"parameters": {
"color": 4,
"width": 1480,
"height": 140,
"content": ""
},
"typeVersion": 1
},
{
"id": "d9fc97f1-30a6-4450-b976-8deb32d536e1",
"name": "메모9",
"type": "n8n-nodes-base.stickyNote",
"position": [
-224,
-224
],
"parameters": {
"color": 4,
"width": 700,
"height": 80,
"content": "# CloudFlare chat ↪️️ get / set DNS records"
},
"typeVersion": 1
},
{
"id": "11b2465a-9298-437d-b49d-b036e14479dc",
"name": "노트1",
"type": "n8n-nodes-base.stickyNote",
"position": [
80,
-96
],
"parameters": {
"color": 3,
"width": 840,
"height": 640,
"content": "## Chat step\n\n1. Use what ever LLM model you like - I've tested it with Gemini and GPT 4o-mini - and both work flawlessly.\n\n2. Prepared main get|set TLD DNS records ops with easy prompt, also extend it to other settings or other ops for your CloudFlare if you need"
},
"typeVersion": 1
},
{
"id": "50256a12-4a51-486e-a2be-a98e24b6f85f",
"name": "채팅 메시지 수신 시",
"type": "@n8n/n8n-nodes-langchain.chatTrigger",
"position": [
160,
128
],
"webhookId": "cb890e80-624b-4431-ab35-992849d95cd1",
"parameters": {
"options": {}
},
"typeVersion": 1.1
},
{
"id": "d0e313c9-3df3-4fcc-8dd6-8fa0838b812b",
"name": "OpenAI 채팅 모델",
"type": "@n8n/n8n-nodes-langchain.lmChatOpenAi",
"position": [
224,
352
],
"parameters": {
"model": {
"__rl": true,
"mode": "list",
"value": "gpt-4o-mini"
},
"options": {}
},
"credentials": {
"openAiApi": {
"id": "YLUlE1oeNyVmySg5",
"name": "OpenAi account"
}
},
"typeVersion": 1.2
},
{
"id": "fe26fbe4-bd00-446f-b738-84484b07ade4",
"name": "Chat 에이전트",
"type": "@n8n/n8n-nodes-langchain.agent",
"position": [
368,
128
],
"parameters": {
"options": {
"systemMessage": "=You are dns manager for CloudFlare\n\nYou have cf_tool that is your source for getting and setting DNS records.\nOnly return answers based from cf_tool.\n\nWhen calling cf_tool, data args to pass for actions are:\n\nIf you need to get dns record, call cf_tool and pass:\n- action: 'get_dns'\n- domain_id: domain id\n\nif you need to set dns record, call cf_tool and pass:\n- action: 'set_dns'\n- domain_id: domain id\n- record_id: id of a record\n- record_type: type of DNS record\n- new_record_content: new value\n\nIf you need to get domains available in CF, call cf_tool and pass:\n- action 'domain'\n\nBefore calling any user query action, first execute get all domains action."
}
},
"typeVersion": 1.9
},
{
"id": "7489f1c5-68dc-46c9-a80c-f104f661898e",
"name": "Get TLDs",
"type": "n8n-nodes-base.httpRequest",
"position": [
608,
608
],
"parameters": {
"url": "https://api.cloudflare.com/client/v4/zones",
"options": {},
"sendQuery": true,
"authentication": "genericCredentialType",
"genericAuthType": "httpCustomAuth",
"queryParameters": {
"parameters": [
{
"name": "per_page",
"value": "=100"
}
]
}
},
"credentials": {
"httpCustomAuth": {
"id": "6l2hwj0eyB10vHc2",
"name": "CloudFlare headers"
}
},
"executeOnce": true,
"typeVersion": 4.1
},
{
"id": "2bfd5981-6511-4ce8-944e-f583e577519d",
"name": "Json",
"type": "n8n-nodes-base.code",
"position": [
160,
944
],
"parameters": {
"jsCode": "// Loop over input items and add a new field called 'myNewField' to the JSON of each one\nlet inpt = $input.first().json.query;\nlet out = {};\ntry{\n out = JSON.parse(inpt)\n} catch{}\nif( out.action ){\n return {out};\n} else{\n return {};\n}\n"
},
"typeVersion": 2
},
{
"id": "a6d94bec-619d-4863-833d-479cfcac458b",
"name": "노트2",
"type": "n8n-nodes-base.stickyNote",
"position": [
80,
576
],
"parameters": {
"color": 6,
"width": 840,
"height": 544,
"content": "## Cloudflare ops\n\n- this is main operation call for getting, setting DNS records"
},
"typeVersion": 1
},
{
"id": "8c84645c-f5a8-41a2-9bad-c93d29f803fa",
"name": "스위치",
"type": "n8n-nodes-base.switch",
"position": [
368,
800
],
"parameters": {
"rules": {
"values": [
{
"conditions": {
"options": {
"version": 2,
"leftValue": "",
"caseSensitive": true,
"typeValidation": "strict"
},
"combinator": "and",
"conditions": [
{
"id": "a542a8cc-a11b-41c7-a288-fc0948d002d3",
"operator": {
"type": "string",
"operation": "equals"
},
"leftValue": "={{ $json.out.action }}",
"rightValue": "domain"
}
]
}
},
{
"conditions": {
"options": {
"version": 2,
"leftValue": "",
"caseSensitive": true,
"typeValidation": "strict"
},
"combinator": "and",
"conditions": [
{
"id": "6b5fa3fd-e4c2-4e01-bffd-f2ea364dc6a5",
"operator": {
"name": "filter.operator.equals",
"type": "string",
"operation": "equals"
},
"leftValue": "={{ $json.out.action }}",
"rightValue": "get_dns"
}
]
}
},
{
"conditions": {
"options": {
"version": 2,
"leftValue": "",
"caseSensitive": true,
"typeValidation": "strict"
},
"combinator": "and",
"conditions": [
{
"id": "f3715811-47d8-4cee-b705-ea1ed4ddd0a3",
"operator": {
"name": "filter.operator.equals",
"type": "string",
"operation": "equals"
},
"leftValue": "={{ $json.out.action }}",
"rightValue": "set_dns"
}
]
}
}
]
},
"options": {}
},
"typeVersion": 3.2
},
{
"id": "5980e4a6-805b-4266-9039-87ae6034dc66",
"name": "Postgres 채팅 메모리",
"type": "@n8n/n8n-nodes-langchain.memoryPostgresChat",
"position": [
400,
384
],
"parameters": {
"tableName": "langchain_chat_histories",
"contextWindowLength": 6
},
"credentials": {
"postgres": {
"id": "TxgFdIVuxITapbbG",
"name": "Postgres account"
}
},
"typeVersion": 1.3
},
{
"id": "24f1a023-b3b3-4c8c-8878-a008a4a05aba",
"name": "CloudFlare tool",
"type": "@n8n/n8n-nodes-langchain.toolWorkflow",
"position": [
608,
384
],
"parameters": {
"workflowId": {
"__rl": true,
"mode": "id",
"value": "={{ $workflow.id }}",
"cachedResultName": "={{ $workflow.id }}"
},
"description": "=Call this tool to make cloudflare oprations. \nPass down only json with needed data",
"workflowInputs": {
"value": {},
"schema": [],
"mappingMode": "defineBelow",
"matchingColumns": [],
"attemptToConvertTypes": false,
"convertFieldsToString": false
}
},
"typeVersion": 2.2
},
{
"id": "1831596a-e9a6-4d64-a5b6-817c0a1f6c26",
"name": "End",
"type": "n8n-nodes-base.noOp",
"position": [
704,
128
],
"parameters": {},
"typeVersion": 1
},
{
"id": "d1d69661-c963-46aa-9f4e-2b5912a83d21",
"name": "SubCall",
"type": "n8n-nodes-base.executeWorkflowTrigger",
"position": [
128,
688
],
"parameters": {},
"typeVersion": 1
},
{
"id": "3645506b-0bae-4868-af6f-ffac27aa42db",
"name": "Host details",
"type": "n8n-nodes-base.splitOut",
"position": [
768,
608
],
"parameters": {
"options": {},
"fieldToSplitOut": "result"
},
"executeOnce": false,
"typeVersion": 1
},
{
"id": "51811193-5d44-4314-b9d7-a5bf317fc535",
"name": "Getter",
"type": "n8n-nodes-base.httpRequest",
"position": [
608,
768
],
"parameters": {
"url": "=https://api.cloudflare.com/client/v4/zones/{{ $json.out.domain_id }}/dns_records",
"options": {},
"sendQuery": true,
"authentication": "genericCredentialType",
"genericAuthType": "httpCustomAuth",
"queryParameters": {
"parameters": [
{}
]
}
},
"credentials": {
"httpCustomAuth": {
"id": "6l2hwj0eyB10vHc2",
"name": "CloudFlare headers"
}
},
"executeOnce": true,
"typeVersion": 4.1
},
{
"id": "d78642dd-e0bd-470e-9e0a-c602c80e8f5b",
"name": "설정ter",
"type": "n8n-nodes-base.httpRequest",
"position": [
608,
928
],
"parameters": {
"url": "=https://api.cloudflare.com/client/v4/zones/{{ $json.out.domain_id }}/dns_records/{{ $json.out.record_id }}",
"method": "PATCH",
"options": {},
"sendBody": true,
"authentication": "genericCredentialType",
"bodyParameters": {
"parameters": [
{
"name": "content",
"value": "={{ $json.out.new_record_content }}"
}
]
},
"genericAuthType": "httpCustomAuth"
},
"credentials": {
"httpCustomAuth": {
"id": "6l2hwj0eyB10vHc2",
"name": "CloudFlare headers"
}
},
"typeVersion": 4.1
}
],
"pinData": {},
"connections": {
"2bfd5981-6511-4ce8-944e-f583e577519d": {
"main": [
[
{
"node": "Switch",
"type": "main",
"index": 0
}
]
]
},
"Switch": {
"main": [
[
{
"node": "7489f1c5-68dc-46c9-a80c-f104f661898e",
"type": "main",
"index": 0
}
],
[
{
"node": "51811193-5d44-4314-b9d7-a5bf317fc535",
"type": "main",
"index": 0
}
],
[
{
"node": "Setter",
"type": "main",
"index": 0
}
]
]
},
"d1d69661-c963-46aa-9f4e-2b5912a83d21": {
"main": [
[
{
"node": "2bfd5981-6511-4ce8-944e-f583e577519d",
"type": "main",
"index": 0
}
]
]
},
"7489f1c5-68dc-46c9-a80c-f104f661898e": {
"main": [
[
{
"node": "3645506b-0bae-4868-af6f-ffac27aa42db",
"type": "main",
"index": 0
}
]
]
},
"Chat Agent": {
"main": [
[
{
"node": "1831596a-e9a6-4d64-a5b6-817c0a1f6c26",
"type": "main",
"index": 0
}
]
]
},
"3645506b-0bae-4868-af6f-ffac27aa42db": {
"main": [
[]
]
},
"24f1a023-b3b3-4c8c-8878-a008a4a05aba": {
"ai_tool": [
[
{
"node": "Chat Agent",
"type": "ai_tool",
"index": 0
}
]
]
},
"OpenAI Chat Model": {
"ai_languageModel": [
[
{
"node": "Chat Agent",
"type": "ai_languageModel",
"index": 0
}
]
]
},
"Postgres Chat Memory": {
"ai_memory": [
[
{
"node": "Chat Agent",
"type": "ai_memory",
"index": 0
}
]
]
},
"When chat message received": {
"main": [
[
{
"node": "Chat Agent",
"type": "main",
"index": 0
}
]
]
}
}
}자주 묻는 질문
이 워크플로우를 어떻게 사용하나요?
위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.
이 워크플로우는 어떤 시나리오에 적합한가요?
고급 - 데브옵스, AI 챗봇
유료인가요?
이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.
관련 워크플로우 추천
시각화 참조 라이브러리에서 n8n 노드를 탐색
可视化 참조 라이브러리에서 n8n 노드를 탐색
If
Ftp
Set
+
If
Ftp
Set
113 노드I versus AI
기타
문서 대리인 템플릿
Gemini와 Google Drive를 사용하여 템플릿에서 맞춤형 PDF 문서를 생성하세요
If
Set
Code
+
If
Set
Code
36 노드Ozgur Karateke
문서 추출
✨🩷자동화소셜 미디어콘텐츠게시工厂 + 系统提示组合
基于动态系统提示및GPT-4o의AI驱动多平台소셜 미디어콘텐츠工厂
If
Set
Code
+
If
Set
Code
100 노드Amit Mehta
콘텐츠 제작
✨🩷 자동 소셜 미디어 콘텐츠 배포 공장 + 시스템 튜링 조합
GPT-4o를 사용하여 6개 플랫폼에서 플랫폼 최적화된 소셜 미디어 내용 생성
If
Set
Code
+
If
Set
Code
100 노드Luan Correia
소셜 미디어
컨텍스트 혼합 RAG AI 콘텐츠
Google Drive에서 Supabase 상황 벡터 데이터베이스로 동기화, RAG 애플리케이션 사용
If
Set
Code
+
If
Set
Code
76 노드Michael Taleb
AI RAG
✨🩷 자동화 소셜 미디어 콘텐츠 배포 공장 + 시스템 튜닝 조합
✨🩷 자동화 소셜 미디어 콘텐츠 배포 공장 + 시스템 튜링 조합
If
Set
Code
+
If
Set
Code
100 노드Joseph LePage
마케팅
워크플로우 정보
난이도
고급
노드 수20
카테고리2
노드 유형12
저자
KPendic
@kresWith 15 years on my back, carrying clients' web apps through the storms of bad code, tight deadlines, and ever-changing tech trends, I now do stuff as an AI Automation Engineer, with focus on streamlining backend services, making systems faster, smarter, and more sustainable.
외부 링크
n8n.io에서 보기 →
이 워크플로우 공유