role_arn
From Dontopedia, the open, paraconsistent wiki. (Last updated 2026-06-08.)
role_arn has 27 facts recorded in Dontopedia across 6 references, with 4 live disagreements.
Mostly:rdf:type(6), references resource(5), is accessed by(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.
containsOutputContains Output(2)
- Shared Resources Module
ex:shared-resources-module - Shared Resources Module
ex:shared-resources-module
containsContains(1)
- Output Block 1
ex:output-block-1
containsOutputDefinitionContains Output Definition(1)
- Shared Resources Main Tf
ex:shared-resources-main-tf
exportsExports(1)
- Module.shared Resources
ex:module.shared-resources
hasOutputHas Output(1)
- Shared Resources Module
ex:shared-resources-module
hasOutputSectionHas Output Section(1)
- Shared Resources Module
ex:shared-resources-module
isReferencedByIs Referenced by(1)
- Shared Iam Role
ex:shared-iam-role
providesOutputProvides Output(1)
- Shared Resources Module
ex:shared-resources-module
referencesModuleOutputReferences Module Output(1)
- Role Arn Local
ex:role-arn-local
Other facts (22)
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 | Terraform Output | [1] |
| Rdf:type | Output | [2] |
| Rdf:type | Terraform Output | [3] |
| Rdf:type | Terraform Output | [4] |
| Rdf:type | Output | [5] |
| Rdf:type | Module Output | [6] |
| References Resource | Aws Iam Role Shared Role | [1] |
| References Resource | Aws Iam Role Shared Role | [2] |
| References Resource | Shared Iam Role | [3] |
| References Resource | Aws Iam Role | [4] |
| References Resource | Aws Iam Role | [5] |
| Is Accessed by | Retrieval Module | [6] |
| Is Accessed by | Ingestion Module | [6] |
| Provides Output | Source Document | [1] |
| Has Value | aws_iam_role.shared_role.arn | [2] |
| Output Value Expression | aws_iam_role.shared_role.arn | [2] |
| Output Value | aws_iam_role.shared_role.arn | [3] |
| Output Name | role_arn | [3] |
| Output Expression | aws_iam_role.shared_role.arn | [3] |
| Is Declared in | Output Block 1 | [3] |
| Output Type | arn | [3] |
| Output Category | identifier | [3] |
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 (6)
ctx:claims/beam/c63a9892-3cac-49a8-8296-84a166b21998- full textbeam-chunktext/plain1 KB
doc:beam/c63a9892-3cac-49a8-8296-84a166b21998Show excerpt
Effect = "Allow" Principal = { Service = "ec2.amazonaws.com" } Action = "sts:AssumeRole" } ] }) } output "role_arn" { value = aws_iam_role.shared_role.arn } ``` #### Ingestion Module…
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/ff8d44cf-7456-49c8-9f71-dbb4ca6bb0a7ctx: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.