Terraform data source for managing an AWS DataZone Environment Blueprint.
resource "aws_datazone_domain" "example" {
name = "example_domain"
domain_execution_role = aws_iam_role.domain_execution_role.arn
}
data "aws_datazone_environment_blueprint" "example" {
domain_id = aws_datazone_domain.example.id
name = "DefaultDataLake"
managed = true
}
The following arguments are required:
domain_id
- (Required) ID of the domain.name
- (Required) Name of the blueprint.managed
(Required) Whether the blueprint is managed by Amazon DataZone.This data source exports the following attributes in addition to the arguments above:
id
- ID of the environment blueprintdescription
- Description of the blueprintblueprint_provider
- Provider of the blueprint