-
Notifications
You must be signed in to change notification settings - Fork 888
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added cloud.infrastructure_service attribute to resource spec #1112
Changes from 3 commits
f241fe7
491054c
845dfd4
d26ecf0
f4a1b6f
328d5df
8e97404
ccee0c5
47a9c84
6df9b41
a9a1113
66d4bbd
9b58292
4be0877
fea3418
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,3 +37,55 @@ groups: | |
note: > | ||
In AWS, this is called availability-zone. | ||
examples: ['us-central1-a'] | ||
- id: infrastructure.service | ||
type: | ||
allow_custom_values: true | ||
members: | ||
- id: EC2 | ||
value: 'EC2' | ||
brief: AWS Elastic Compute Cloud | ||
- id: ECS | ||
value: 'ECS' | ||
brief: AWS Elastic Container Service | ||
- id: EKS | ||
value: 'EKS' | ||
brief: AWS Elastic Kubernetes Service | ||
- id: Lambda | ||
value: 'Lambda' | ||
brief: AWS Lambda | ||
- id: ElasticBeanstalk | ||
value: 'ElasticBeanstalk' | ||
brief: AWS Elastic Beanstalk | ||
- id: VM | ||
value: 'VM' | ||
brief: Azure Virtual Machines | ||
- id: ContainerInstances | ||
value: 'ContainerInstances' | ||
brief: Azure Container Instances | ||
- id: AKS | ||
value: 'AKS' | ||
brief: Azure Kubernetes Service | ||
arminru marked this conversation as resolved.
Show resolved
Hide resolved
|
||
- id: Functions | ||
value: 'Functions' | ||
brief: Azure Functions | ||
- id: AppService | ||
value: 'AppService' | ||
brief: Azure App Service | ||
- id: ComputeEngine | ||
value: 'ComputeEngine' | ||
brief: GCP Compute Engine | ||
- id: CloudRun | ||
value: 'CloudRun' | ||
brief: GCP Cloud Run | ||
- id: GKE | ||
value: 'GKE' | ||
brief: Google Kubernetes Engine | ||
- id: CloudFunctions | ||
value: 'CloudFunctions' | ||
brief: GCP Cloud Functions | ||
- id: AppEngine | ||
value: 'AppEngine' | ||
brief: GCP App Engine | ||
brief: > | ||
The cloud infrastructure resource in use. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe add a note that the service should (must?) match There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Went with should - we allow for custom values so that other cloud providers besides the 3 we enumerate can be referenced, and we can't really control what people would call those |
||
examples: ['EC2', 'VM', 'ComputeEngine'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry my PR suggestion was in the wrong place - should have renamed here and then regenerated the md
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh duh, will fix