role_arn
From Dontopedia, the open, paraconsistent wiki. (Last updated 2026-06-08.)
role_arn has 20 facts recorded in Dontopedia across 5 references, with 3 live disagreements.
Mostly:rdf:type(5), has type(2), has default(2)
Maturity scale
raw canonical shape-checked rule-derived certifiedInbound mentions (10)
Other subjects in dontopedia point AT this entity as a value. These are inverse relationships — e.g. "X motherOf this subject" — and answer questions the forward facts can't. Grouped by predicate.
containsVariableContains Variable(4)
- Ingestion Module
ex:ingestion-module - Ingestion Module
ex:ingestion-module - Ingestion Module
ex:ingestion-module - Retrieval Module
ex:retrieval-module
hasVariableDeclarationHas Variable Declaration(2)
- Ingestion Module
ex:ingestion-module - Retrieval Module
ex:retrieval-module
containsContains(1)
- Locals Block 1
ex:locals-block-1
containsVariableDefinitionContains Variable Definition(1)
- Ingestion Main Tf
ex:ingestion-main-tf
hasVariableHas Variable(1)
- Aws Instance
ex:aws-instance
hasVariableSectionHas Variable Section(1)
- Ingestion Module
ex:ingestion-module
Other facts (17)
The long tail: predicates that appear too rarely to warrant their own section. Filter or scroll to find a specific one. Each row links to its source.
| Predicate | Value | Ref |
|---|---|---|
| Rdf:type | Variable | [1] |
| Rdf:type | Terraform Variable | [2] |
| Rdf:type | Terraform Variable | [3] |
| Rdf:type | Variable | [4] |
| Rdf:type | Variable | [5] |
| Has Type | string | [1] |
| Has Type | String | [3] |
| Has Default | "" | [1] |
| Has Default | "" | [3] |
| Variable Type | string | [1] |
| Variable Type | string | [2] |
| Variable Name | role_arn | [2] |
| Variable Default | "" | [2] |
| Variable Block Structure | type-string-default-empty | [2] |
| Type | string | [4] |
| Default | "" | [4] |
| Has Value | Module.shared Resources.role Arn | [5] |
Timeline
Timeline axis is valid_time — when each source says the fact was true in the world, not when Dontopedia learned about it. Retracted rows are kept for provenance; coloured stripes indicate the context kind.
References (5)
ctx:claims/beam/21026c15-2bbe-40ca-8b88-ba2b26cf96e3- full textbeam-chunktext/plain1 KB
doc:beam/21026c15-2bbe-40ca-8b88-ba2b26cf96e3Show excerpt
outputs.tf main.tf ``` #### Shared Resources Module (`modules/shared_resources/main.tf`) ```hcl variable "role_name" { type = string default = "shared-role" } resource "aws_iam_role" "shared_role" { name = var.role_name a…
ctx:claims/beam/d9bfea34-1fea-48fa-83e9-931b6c2fc2a3- full textbeam-chunktext/plain1 KB
doc:beam/d9bfea34-1fea-48fa-83e9-931b6c2fc2a3Show excerpt
#### Updated Consuming Modules If the new policy needs to be referenced in the ingestion or retrieval modules, update them accordingly. #### Ingestion Module (`modules/ingestion/main.tf`) ```hcl variable "role_arn" { type = string …
ctx:claims/beam/457a5c47-c9e0-4523-bd05-624dbed164e7- full textbeam-chunktext/plain1 KB
doc:beam/457a5c47-c9e0-4523-bd05-624dbed164e7Show excerpt
Create a separate module specifically for shared resources like IAM roles. This module can be referenced by both ingestion and retrieval modules. #### Example Structure ``` modules/ shared_resources/ main.tf variables.tf out…
ctx:claims/beam/1a6a6272-e939-42d4-bdfb-022b93350837- full textbeam-chunktext/plain1 KB
doc:beam/1a6a6272-e939-42d4-bdfb-022b93350837Show excerpt
Ensure that the shared resources module exports the necessary information (like ARNs) and that the ingestion and retrieval modules consume these outputs as inputs. #### Shared Resources Module (`modules/shared_resources/main.tf`) ```hcl v…
ctx:claims/beam/fd912db7-f15a-4a61-a19d-9a196007b348- full textbeam-chunktext/plain1 KB
doc:beam/fd912db7-f15a-4a61-a19d-9a196007b348Show excerpt
locals { role_arn = module.shared_resources.role_arn } ``` #### Retrieval Module (`modules/retrieval/main.tf`) ```hcl variable "role_arn" { type = string default = "" } resource "aws_instance" "retrieval" { ami = "am…
See also
Keep researching
Missing something or suspicious of what's here? Kick off a research session — a Claude agent will investigate, cite its sources, and file new facts into a dedicated context you can review before accepting into the shared view.