-
Notifications
You must be signed in to change notification settings - Fork 28
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
Add support for Azure metadata (tags) #191
Conversation
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.
Tags does not seem to be created
Here is the file:
terraform {
required_providers {
iterative = {
source = "github.com/iterative/iterative"
}
}
}
provider "iterative" {}
resource "iterative_cml_runner" "runner-gh-11" {
metadata = {
project = "example"
creator = "anybody"
}
token = "XXX"
repo = "XXX"
driver = "gitlab"
labels = "azure"
idle_timeout = 0
cloud = "azure"
region = "us-west"
instance_type = "Standard_F8s_v2"
spot = true
ssh_private = "XXX"
}
Im expecting to see project and creator tags
That's what I see when navigating to https://portal.azure.com/#blade/HubsExtension/TagsBlade, without running any |
Not sure what do you mean. Can you please check that tags are created in your resources? |
I mean that, after you ran The resource group itself, shown in your screenshot wasn't being tagged, but we can also tag it: see 896d1f3 |
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.
lgtm 🚀
Part of #185