index.html 277 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915139161391713918139191392013921139221392313924139251392613927139281392913930139311393213933139341393513936139371393813939139401394113942139431394413945139461394713948139491395013951139521395313954139551395613957139581395913960139611396213963139641396513966139671396813969139701397113972139731397413975139761397713978139791398013981139821398313984139851398613987139881398913990139911399213993139941399513996139971399813999140001400114002140031400414005140061400714008140091401014011140121401314014140151401614017140181401914020140211402214023140241402514026140271402814029140301403114032140331403414035140361403714038140391404014041140421404314044140451404614047140481404914050140511405214053140541405514056140571405814059140601406114062140631406414065140661406714068140691407014071140721407314074140751407614077140781407914080140811408214083140841408514086140871408814089140901409114092140931409414095140961409714098140991410014101141021410314104141051410614107141081410914110141111411214113141141411514116141171411814119141201412114122141231412414125141261412714128141291413014131141321413314134141351413614137141381413914140141411414214143141441414514146141471414814149141501415114152141531415414155141561415714158141591416014161141621416314164141651416614167141681416914170141711417214173141741417514176141771417814179141801418114182141831418414185141861418714188141891419014191141921419314194141951419614197141981419914200142011420214203142041420514206142071420814209142101421114212142131421414215142161421714218142191422014221142221422314224142251422614227142281422914230142311423214233142341423514236142371423814239142401424114242142431424414245142461424714248142491425014251142521425314254142551425614257142581425914260142611426214263142641426514266142671426814269142701427114272142731427414275142761427714278142791428014281142821428314284142851428614287142881428914290142911429214293142941429514296142971429814299143001430114302143031430414305143061430714308143091431014311143121431314314143151431614317143181431914320143211432214323143241432514326143271432814329143301433114332143331433414335143361433714338143391434014341143421434314344143451434614347143481434914350143511435214353143541435514356143571435814359143601436114362143631436414365143661436714368143691437014371143721437314374143751437614377143781437914380143811438214383143841438514386143871438814389143901439114392143931439414395143961439714398143991440014401144021440314404144051440614407144081440914410144111441214413144141441514416144171441814419144201442114422144231442414425144261442714428144291443014431144321443314434144351443614437144381443914440144411444214443144441444514446144471444814449144501445114452144531445414455144561445714458144591446014461144621446314464144651446614467144681446914470144711447214473144741447514476144771447814479144801448114482144831448414485144861448714488144891449014491144921449314494144951449614497144981449914500145011450214503145041450514506145071450814509145101451114512145131451414515145161451714518145191452014521145221452314524145251452614527145281452914530145311453214533145341453514536145371453814539145401454114542145431454414545145461454714548145491455014551145521455314554145551455614557145581455914560145611456214563145641456514566145671456814569145701457114572145731457414575145761457714578145791458014581145821458314584145851458614587145881458914590145911459214593145941459514596145971459814599146001460114602146031460414605146061460714608146091461014611146121461314614146151461614617146181461914620146211462214623146241462514626146271462814629146301463114632146331463414635146361463714638146391464014641146421464314644146451464614647146481464914650146511465214653146541465514656146571465814659146601466114662146631466414665146661466714668146691467014671146721467314674146751467614677146781467914680146811468214683146841468514686146871468814689146901469114692146931469414695146961469714698146991470014701147021470314704147051470614707147081470914710147111471214713147141471514716147171471814719147201472114722147231472414725147261472714728147291473014731147321473314734147351473614737147381473914740147411474214743147441474514746147471474814749147501475114752147531475414755147561475714758147591476014761147621476314764147651476614767147681476914770147711477214773147741477514776147771477814779147801478114782147831478414785147861478714788147891479014791147921479314794147951479614797147981479914800148011480214803148041480514806148071480814809148101481114812148131481414815148161481714818148191482014821148221482314824148251482614827148281482914830148311483214833148341483514836148371483814839148401484114842148431484414845148461484714848148491485014851148521485314854148551485614857148581485914860148611486214863148641486514866148671486814869148701487114872148731487414875148761487714878148791488014881148821488314884148851488614887148881488914890148911489214893148941489514896148971489814899149001490114902149031490414905149061490714908149091491014911149121491314914149151491614917149181491914920149211492214923149241492514926149271492814929149301493114932149331493414935149361493714938149391494014941149421494314944149451494614947149481494914950149511495214953149541495514956149571495814959149601496114962149631496414965149661496714968149691497014971149721497314974149751497614977149781497914980149811498214983149841498514986149871498814989149901499114992149931499414995149961499714998149991500015001150021500315004150051500615007150081500915010150111501215013150141501515016150171501815019150201502115022150231502415025150261502715028150291503015031150321503315034150351503615037150381503915040150411504215043150441504515046150471504815049150501505115052150531505415055150561505715058150591506015061150621506315064150651506615067150681506915070150711507215073150741507515076150771507815079150801508115082150831508415085150861508715088150891509015091150921509315094150951509615097150981509915100151011510215103151041510515106151071510815109151101511115112151131511415115151161511715118151191512015121151221512315124151251512615127151281512915130151311513215133151341513515136151371513815139151401514115142151431514415145151461514715148151491515015151151521515315154151551515615157151581515915160151611516215163151641516515166151671516815169151701517115172151731517415175151761517715178151791518015181151821518315184151851518615187151881518915190151911519215193151941519515196151971519815199152001520115202152031520415205152061520715208152091521015211152121521315214152151521615217152181521915220152211522215223152241522515226152271522815229152301523115232152331523415235152361523715238152391524015241152421524315244152451524615247152481524915250152511525215253152541525515256152571525815259152601526115262152631526415265152661526715268152691527015271152721527315274152751527615277152781527915280152811528215283152841528515286152871528815289152901529115292152931529415295152961529715298152991530015301153021530315304153051530615307153081530915310153111531215313153141531515316153171531815319153201532115322153231532415325153261532715328153291533015331153321533315334153351533615337153381533915340153411534215343153441534515346153471534815349153501535115352153531535415355153561535715358153591536015361153621536315364153651536615367153681536915370153711537215373153741537515376153771537815379153801538115382153831538415385153861538715388153891539015391153921539315394153951539615397153981539915400154011540215403154041540515406154071540815409154101541115412154131541415415154161541715418154191542015421154221542315424154251542615427154281542915430154311543215433154341543515436154371543815439154401544115442154431544415445154461544715448154491545015451154521545315454154551545615457154581545915460154611546215463154641546515466154671546815469154701547115472154731547415475154761547715478154791548015481154821548315484154851548615487154881548915490154911549215493154941549515496154971549815499155001550115502155031550415505155061550715508155091551015511155121551315514155151551615517155181551915520155211552215523155241552515526155271552815529155301553115532155331553415535155361553715538155391554015541155421554315544155451554615547155481554915550155511555215553155541555515556155571555815559155601556115562155631556415565155661556715568155691557015571155721557315574155751557615577155781557915580155811558215583155841558515586155871558815589155901559115592155931559415595155961559715598155991560015601156021560315604156051560615607156081560915610156111561215613156141561515616156171561815619156201562115622156231562415625156261562715628156291563015631156321563315634156351563615637156381563915640156411564215643156441564515646156471564815649156501565115652156531565415655156561565715658156591566015661156621566315664156651566615667156681566915670156711567215673156741567515676156771567815679156801568115682156831568415685156861568715688156891569015691156921569315694156951569615697156981569915700157011570215703157041570515706
  1. <!doctype html>
  2. <html lang="en" class="no-js">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1">
  6. <link rel="prev" href="../generator/sshkey/">
  7. <link rel="next" href="../controller-options/">
  8. <link rel="icon" href="../../pictures/eso-round-logo.svg">
  9. <meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.6.20">
  10. <title>API specification - External Secrets Operator</title>
  11. <link rel="stylesheet" href="../../assets/stylesheets/main.e53b48f4.min.css">
  12. <link rel="stylesheet" href="../../assets/stylesheets/palette.06af60db.min.css">
  13. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  14. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,700,700i%7CRoboto+Mono:400,400i,700,700i&display=fallback">
  15. <style>:root{--md-text-font:"Roboto";--md-code-font:"Roboto Mono"}</style>
  16. <script>__md_scope=new URL("../..",location),__md_hash=e=>[...e].reduce(((e,_)=>(e<<5)-e+_.charCodeAt(0)),0),__md_get=(e,_=localStorage,t=__md_scope)=>JSON.parse(_.getItem(t.pathname+"."+e)),__md_set=(e,_,t=localStorage,a=__md_scope)=>{try{t.setItem(a.pathname+"."+e,JSON.stringify(_))}catch(e){}}</script>
  17. <script id="__analytics">function __md_analytics(){function e(){dataLayer.push(arguments)}window.dataLayer=window.dataLayer||[],e("js",new Date),e("config","G-QP38TD8K7V"),document.addEventListener("DOMContentLoaded",(function(){document.forms.search&&document.forms.search.query.addEventListener("blur",(function(){this.value&&e("event","search",{search_term:this.value})}));document$.subscribe((function(){var t=document.forms.feedback;if(void 0!==t)for(var a of t.querySelectorAll("[type=submit]"))a.addEventListener("click",(function(a){a.preventDefault();var n=document.location.pathname,d=this.getAttribute("data-md-value");e("event","feedback",{page:n,data:d}),t.firstElementChild.disabled=!0;var r=t.querySelector(".md-feedback__note [data-md-value='"+d+"']");r&&(r.hidden=!1)})),t.hidden=!1})),location$.subscribe((function(t){e("config","G-QP38TD8K7V",{page_path:t.pathname})}))}));var t=document.createElement("script");t.async=!0,t.src="https://www.googletagmanager.com/gtag/js?id=G-QP38TD8K7V",document.getElementById("__analytics").insertAdjacentElement("afterEnd",t)}</script>
  18. <script>"undefined"!=typeof __md_analytics&&__md_analytics()</script>
  19. </head>
  20. <body dir="ltr" data-md-color-scheme="default" data-md-color-primary="indigo" data-md-color-accent="indigo">
  21. <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off">
  22. <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off">
  23. <label class="md-overlay" for="__drawer"></label>
  24. <div data-md-component="skip">
  25. </div>
  26. <div data-md-component="announce">
  27. </div>
  28. <div data-md-color-scheme="default" data-md-component="outdated" hidden>
  29. <aside class="md-banner md-banner--warning">
  30. <div class="md-banner__inner md-grid md-typeset">
  31. You're not viewing the latest version.
  32. <a href="../../..">
  33. <strong>Click here to go to latest.</strong>
  34. </a>
  35. </div>
  36. <script>var el=document.querySelector("[data-md-component=outdated]"),base=new URL("../.."),outdated=__md_get("__outdated",sessionStorage,base);!0===outdated&&el&&(el.hidden=!1)</script>
  37. </aside>
  38. </div>
  39. <header class="md-header" data-md-component="header">
  40. <nav class="md-header__inner md-grid" aria-label="Header">
  41. <a href="../.." title="External Secrets Operator" class="md-header__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  42. <img src="../../pictures/eso-round-logo.svg" alt="logo">
  43. </a>
  44. <label class="md-header__button md-icon" for="__drawer">
  45. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v2H3zm0 5h18v2H3zm0 5h18v2H3z"/></svg>
  46. </label>
  47. <div class="md-header__title" data-md-component="header-title">
  48. <div class="md-header__ellipsis">
  49. <div class="md-header__topic">
  50. <span class="md-ellipsis">
  51. External Secrets Operator
  52. </span>
  53. </div>
  54. <div class="md-header__topic" data-md-component="header-topic">
  55. <span class="md-ellipsis">
  56. API specification
  57. </span>
  58. </div>
  59. </div>
  60. </div>
  61. <form class="md-header__option" data-md-component="palette">
  62. <input class="md-option" data-md-color-media="(prefers-color-scheme: light)" data-md-color-scheme="default" data-md-color-primary="indigo" data-md-color-accent="indigo" aria-label="Switch to dark mode" type="radio" name="__palette" id="__palette_0">
  63. <label class="md-header__button md-icon" title="Switch to dark mode" for="__palette_1" hidden>
  64. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4m0 10a6 6 0 0 1-6-6 6 6 0 0 1 6-6 6 6 0 0 1 6 6 6 6 0 0 1-6 6m8-9.31V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12z"/></svg>
  65. </label>
  66. <input class="md-option" data-md-color-media="(prefers-color-scheme: dark)" data-md-color-scheme="slate" data-md-color-primary="indigo" data-md-color-accent="indigo" aria-label="Switch to light mode" type="radio" name="__palette" id="__palette_1">
  67. <label class="md-header__button md-icon" title="Switch to light mode" for="__palette_0" hidden>
  68. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18c-.89 0-1.74-.2-2.5-.55C11.56 16.5 13 14.42 13 12s-1.44-4.5-3.5-5.45C10.26 6.2 11.11 6 12 6a6 6 0 0 1 6 6 6 6 0 0 1-6 6m8-9.31V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12z"/></svg>
  69. </label>
  70. </form>
  71. <script>var palette=__md_get("__palette");if(palette&&palette.color){if("(prefers-color-scheme)"===palette.color.media){var media=matchMedia("(prefers-color-scheme: light)"),input=document.querySelector(media.matches?"[data-md-color-media='(prefers-color-scheme: light)']":"[data-md-color-media='(prefers-color-scheme: dark)']");palette.color.media=input.getAttribute("data-md-color-media"),palette.color.scheme=input.getAttribute("data-md-color-scheme"),palette.color.primary=input.getAttribute("data-md-color-primary"),palette.color.accent=input.getAttribute("data-md-color-accent")}for(var[key,value]of Object.entries(palette.color))document.body.setAttribute("data-md-color-"+key,value)}</script>
  72. <label class="md-header__button md-icon" for="__search">
  73. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.52 6.52 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5"/></svg>
  74. </label>
  75. <div class="md-search" data-md-component="search" role="dialog">
  76. <label class="md-search__overlay" for="__search"></label>
  77. <div class="md-search__inner" role="search">
  78. <form class="md-search__form" name="search">
  79. <input type="text" class="md-search__input" name="query" aria-label="Search" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="search-query" required>
  80. <label class="md-search__icon md-icon" for="__search">
  81. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.52 6.52 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5"/></svg>
  82. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11z"/></svg>
  83. </label>
  84. <nav class="md-search__options" aria-label="Search">
  85. <button type="reset" class="md-search__icon md-icon" title="Clear" aria-label="Clear" tabindex="-1">
  86. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>
  87. </button>
  88. </nav>
  89. </form>
  90. <div class="md-search__output">
  91. <div class="md-search__scrollwrap" tabindex="0" data-md-scrollfix>
  92. <div class="md-search-result" data-md-component="search-result">
  93. <div class="md-search-result__meta">
  94. Initializing search
  95. </div>
  96. <ol class="md-search-result__list" role="presentation"></ol>
  97. </div>
  98. </div>
  99. </div>
  100. </div>
  101. </div>
  102. <div class="md-header__source">
  103. <a href="https://github.com/external-secrets/external-secrets" title="Go to repository" class="md-source" data-md-component="source">
  104. <div class="md-source__icon md-icon">
  105. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2025 Fonticons, Inc.--><path d="M439.6 236.1 244 40.5c-5.4-5.5-12.8-8.5-20.4-8.5s-15 3-20.4 8.4L162.5 81l51.5 51.5c27.1-9.1 52.7 16.8 43.4 43.7l49.7 49.7c34.2-11.8 61.2 31 35.5 56.7-26.5 26.5-70.2-2.9-56-37.3L240.3 199v121.9c25.3 12.5 22.3 41.8 9.1 55-6.4 6.4-15.2 10.1-24.3 10.1s-17.8-3.6-24.3-10.1c-17.6-17.6-11.1-46.9 11.2-56v-123c-20.8-8.5-24.6-30.7-18.6-45L142.6 101 8.5 235.1C3 240.6 0 247.9 0 255.5s3 15 8.5 20.4l195.6 195.7c5.4 5.4 12.7 8.4 20.4 8.4s15-3 20.4-8.4l194.7-194.7c5.4-5.4 8.4-12.8 8.4-20.4s-3-15-8.4-20.4"/></svg>
  106. </div>
  107. <div class="md-source__repository">
  108. External Secrets Operator
  109. </div>
  110. </a>
  111. </div>
  112. </nav>
  113. </header>
  114. <div class="md-container" data-md-component="container">
  115. <nav class="md-tabs" aria-label="Tabs" data-md-component="tabs">
  116. <div class="md-grid">
  117. <ul class="md-tabs__list">
  118. <li class="md-tabs__item">
  119. <a href="../.." class="md-tabs__link">
  120. Introduction
  121. </a>
  122. </li>
  123. <li class="md-tabs__item md-tabs__item--active">
  124. <a href="../components/" class="md-tabs__link">
  125. API
  126. </a>
  127. </li>
  128. <li class="md-tabs__item">
  129. <a href="../../guides/introduction/" class="md-tabs__link">
  130. Guides
  131. </a>
  132. </li>
  133. <li class="md-tabs__item">
  134. <a href="../../provider/aws-secrets-manager/" class="md-tabs__link">
  135. Provider
  136. </a>
  137. </li>
  138. <li class="md-tabs__item">
  139. <a href="../../examples/gitops-using-fluxcd/" class="md-tabs__link">
  140. Examples
  141. </a>
  142. </li>
  143. <li class="md-tabs__item">
  144. <a href="../../contributing/devguide/" class="md-tabs__link">
  145. Community
  146. </a>
  147. </li>
  148. </ul>
  149. </div>
  150. </nav>
  151. <main class="md-main" data-md-component="main">
  152. <div class="md-main__inner md-grid">
  153. <div class="md-sidebar md-sidebar--primary" data-md-component="sidebar" data-md-type="navigation" >
  154. <div class="md-sidebar__scrollwrap">
  155. <div class="md-sidebar__inner">
  156. <nav class="md-nav md-nav--primary md-nav--lifted" aria-label="Navigation" data-md-level="0">
  157. <label class="md-nav__title" for="__drawer">
  158. <a href="../.." title="External Secrets Operator" class="md-nav__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  159. <img src="../../pictures/eso-round-logo.svg" alt="logo">
  160. </a>
  161. External Secrets Operator
  162. </label>
  163. <div class="md-nav__source">
  164. <a href="https://github.com/external-secrets/external-secrets" title="Go to repository" class="md-source" data-md-component="source">
  165. <div class="md-source__icon md-icon">
  166. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2025 Fonticons, Inc.--><path d="M439.6 236.1 244 40.5c-5.4-5.5-12.8-8.5-20.4-8.5s-15 3-20.4 8.4L162.5 81l51.5 51.5c27.1-9.1 52.7 16.8 43.4 43.7l49.7 49.7c34.2-11.8 61.2 31 35.5 56.7-26.5 26.5-70.2-2.9-56-37.3L240.3 199v121.9c25.3 12.5 22.3 41.8 9.1 55-6.4 6.4-15.2 10.1-24.3 10.1s-17.8-3.6-24.3-10.1c-17.6-17.6-11.1-46.9 11.2-56v-123c-20.8-8.5-24.6-30.7-18.6-45L142.6 101 8.5 235.1C3 240.6 0 247.9 0 255.5s3 15 8.5 20.4l195.6 195.7c5.4 5.4 12.7 8.4 20.4 8.4s15-3 20.4-8.4l194.7-194.7c5.4-5.4 8.4-12.8 8.4-20.4s-3-15-8.4-20.4"/></svg>
  167. </div>
  168. <div class="md-source__repository">
  169. External Secrets Operator
  170. </div>
  171. </a>
  172. </div>
  173. <ul class="md-nav__list" data-md-scrollfix>
  174. <li class="md-nav__item md-nav__item--nested">
  175. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_1" >
  176. <div class="md-nav__link md-nav__container">
  177. <a href="../.." class="md-nav__link ">
  178. <span class="md-ellipsis">
  179. Introduction
  180. </span>
  181. </a>
  182. <label class="md-nav__link " for="__nav_1" id="__nav_1_label" tabindex="0">
  183. <span class="md-nav__icon md-icon"></span>
  184. </label>
  185. </div>
  186. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_1_label" aria-expanded="false">
  187. <label class="md-nav__title" for="__nav_1">
  188. <span class="md-nav__icon md-icon"></span>
  189. Introduction
  190. </label>
  191. <ul class="md-nav__list" data-md-scrollfix>
  192. <li class="md-nav__item">
  193. <a href="../../introduction/overview/" class="md-nav__link">
  194. <span class="md-ellipsis">
  195. Overview
  196. </span>
  197. </a>
  198. </li>
  199. <li class="md-nav__item">
  200. <a href="../../introduction/glossary/" class="md-nav__link">
  201. <span class="md-ellipsis">
  202. Glossary
  203. </span>
  204. </a>
  205. </li>
  206. <li class="md-nav__item">
  207. <a href="../../introduction/prerequisites/" class="md-nav__link">
  208. <span class="md-ellipsis">
  209. Prerequisites
  210. </span>
  211. </a>
  212. </li>
  213. <li class="md-nav__item">
  214. <a href="../../introduction/getting-started/" class="md-nav__link">
  215. <span class="md-ellipsis">
  216. Getting started
  217. </span>
  218. </a>
  219. </li>
  220. <li class="md-nav__item">
  221. <a href="../../introduction/faq/" class="md-nav__link">
  222. <span class="md-ellipsis">
  223. FAQ
  224. </span>
  225. </a>
  226. </li>
  227. <li class="md-nav__item">
  228. <a href="../../introduction/stability-support/" class="md-nav__link">
  229. <span class="md-ellipsis">
  230. Stability and Support
  231. </span>
  232. </a>
  233. </li>
  234. <li class="md-nav__item">
  235. <a href="../../introduction/deprecation-policy/" class="md-nav__link">
  236. <span class="md-ellipsis">
  237. Deprecation Policy
  238. </span>
  239. </a>
  240. </li>
  241. </ul>
  242. </nav>
  243. </li>
  244. <li class="md-nav__item md-nav__item--active md-nav__item--section md-nav__item--nested">
  245. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2" checked>
  246. <label class="md-nav__link" for="__nav_2" id="__nav_2_label" tabindex="">
  247. <span class="md-ellipsis">
  248. API
  249. </span>
  250. <span class="md-nav__icon md-icon"></span>
  251. </label>
  252. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_2_label" aria-expanded="true">
  253. <label class="md-nav__title" for="__nav_2">
  254. <span class="md-nav__icon md-icon"></span>
  255. API
  256. </label>
  257. <ul class="md-nav__list" data-md-scrollfix>
  258. <li class="md-nav__item">
  259. <a href="../components/" class="md-nav__link">
  260. <span class="md-ellipsis">
  261. Components
  262. </span>
  263. </a>
  264. </li>
  265. <li class="md-nav__item md-nav__item--nested">
  266. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_2" >
  267. <label class="md-nav__link" for="__nav_2_2" id="__nav_2_2_label" tabindex="0">
  268. <span class="md-ellipsis">
  269. Core Resources
  270. </span>
  271. <span class="md-nav__icon md-icon"></span>
  272. </label>
  273. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_2_label" aria-expanded="false">
  274. <label class="md-nav__title" for="__nav_2_2">
  275. <span class="md-nav__icon md-icon"></span>
  276. Core Resources
  277. </label>
  278. <ul class="md-nav__list" data-md-scrollfix>
  279. <li class="md-nav__item">
  280. <a href="../externalsecret/" class="md-nav__link">
  281. <span class="md-ellipsis">
  282. ExternalSecret
  283. </span>
  284. </a>
  285. </li>
  286. <li class="md-nav__item">
  287. <a href="../secretstore/" class="md-nav__link">
  288. <span class="md-ellipsis">
  289. SecretStore
  290. </span>
  291. </a>
  292. </li>
  293. <li class="md-nav__item">
  294. <a href="../clustersecretstore/" class="md-nav__link">
  295. <span class="md-ellipsis">
  296. ClusterSecretStore
  297. </span>
  298. </a>
  299. </li>
  300. <li class="md-nav__item">
  301. <a href="../clusterexternalsecret/" class="md-nav__link">
  302. <span class="md-ellipsis">
  303. ClusterExternalSecret
  304. </span>
  305. </a>
  306. </li>
  307. <li class="md-nav__item">
  308. <a href="../clusterpushsecret/" class="md-nav__link">
  309. <span class="md-ellipsis">
  310. ClusterPushSecret
  311. </span>
  312. </a>
  313. </li>
  314. <li class="md-nav__item">
  315. <a href="../pushsecret/" class="md-nav__link">
  316. <span class="md-ellipsis">
  317. PushSecret
  318. </span>
  319. </a>
  320. </li>
  321. </ul>
  322. </nav>
  323. </li>
  324. <li class="md-nav__item md-nav__item--nested">
  325. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_3" >
  326. <div class="md-nav__link md-nav__container">
  327. <a href="../generator/" class="md-nav__link ">
  328. <span class="md-ellipsis">
  329. Generators
  330. </span>
  331. </a>
  332. <label class="md-nav__link " for="__nav_2_3" id="__nav_2_3_label" tabindex="0">
  333. <span class="md-nav__icon md-icon"></span>
  334. </label>
  335. </div>
  336. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_3_label" aria-expanded="false">
  337. <label class="md-nav__title" for="__nav_2_3">
  338. <span class="md-nav__icon md-icon"></span>
  339. Generators
  340. </label>
  341. <ul class="md-nav__list" data-md-scrollfix>
  342. <li class="md-nav__item">
  343. <a href="../generator/acr/" class="md-nav__link">
  344. <span class="md-ellipsis">
  345. Azure Container Registry
  346. </span>
  347. </a>
  348. </li>
  349. <li class="md-nav__item">
  350. <a href="../generator/ecr/" class="md-nav__link">
  351. <span class="md-ellipsis">
  352. AWS Elastic Container Registry
  353. </span>
  354. </a>
  355. </li>
  356. <li class="md-nav__item">
  357. <a href="../generator/sts/" class="md-nav__link">
  358. <span class="md-ellipsis">
  359. AWS STS Session Token
  360. </span>
  361. </a>
  362. </li>
  363. <li class="md-nav__item">
  364. <a href="../generator/cloudsmith/" class="md-nav__link">
  365. <span class="md-ellipsis">
  366. Cloudsmith
  367. </span>
  368. </a>
  369. </li>
  370. <li class="md-nav__item">
  371. <a href="../generator/cluster/" class="md-nav__link">
  372. <span class="md-ellipsis">
  373. Cluster Generator
  374. </span>
  375. </a>
  376. </li>
  377. <li class="md-nav__item">
  378. <a href="../generator/gcr/" class="md-nav__link">
  379. <span class="md-ellipsis">
  380. Google Container Registry
  381. </span>
  382. </a>
  383. </li>
  384. <li class="md-nav__item">
  385. <a href="../generator/quay/" class="md-nav__link">
  386. <span class="md-ellipsis">
  387. Quay
  388. </span>
  389. </a>
  390. </li>
  391. <li class="md-nav__item">
  392. <a href="../generator/vault/" class="md-nav__link">
  393. <span class="md-ellipsis">
  394. Vault Dynamic Secret
  395. </span>
  396. </a>
  397. </li>
  398. <li class="md-nav__item">
  399. <a href="../generator/password/" class="md-nav__link">
  400. <span class="md-ellipsis">
  401. Password
  402. </span>
  403. </a>
  404. </li>
  405. <li class="md-nav__item">
  406. <a href="../generator/fake/" class="md-nav__link">
  407. <span class="md-ellipsis">
  408. Fake
  409. </span>
  410. </a>
  411. </li>
  412. <li class="md-nav__item">
  413. <a href="../generator/webhook/" class="md-nav__link">
  414. <span class="md-ellipsis">
  415. Webhook
  416. </span>
  417. </a>
  418. </li>
  419. <li class="md-nav__item">
  420. <a href="../generator/github/" class="md-nav__link">
  421. <span class="md-ellipsis">
  422. Github
  423. </span>
  424. </a>
  425. </li>
  426. <li class="md-nav__item">
  427. <a href="../generator/uuid/" class="md-nav__link">
  428. <span class="md-ellipsis">
  429. UUID
  430. </span>
  431. </a>
  432. </li>
  433. <li class="md-nav__item">
  434. <a href="../generator/mfa/" class="md-nav__link">
  435. <span class="md-ellipsis">
  436. MFA
  437. </span>
  438. </a>
  439. </li>
  440. <li class="md-nav__item">
  441. <a href="../generator/sshkey/" class="md-nav__link">
  442. <span class="md-ellipsis">
  443. SSHKey
  444. </span>
  445. </a>
  446. </li>
  447. </ul>
  448. </nav>
  449. </li>
  450. <li class="md-nav__item md-nav__item--active md-nav__item--nested">
  451. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4" checked>
  452. <label class="md-nav__link" for="__nav_2_4" id="__nav_2_4_label" tabindex="0">
  453. <span class="md-ellipsis">
  454. Reference Docs
  455. </span>
  456. <span class="md-nav__icon md-icon"></span>
  457. </label>
  458. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_4_label" aria-expanded="true">
  459. <label class="md-nav__title" for="__nav_2_4">
  460. <span class="md-nav__icon md-icon"></span>
  461. Reference Docs
  462. </label>
  463. <ul class="md-nav__list" data-md-scrollfix>
  464. <li class="md-nav__item md-nav__item--active">
  465. <input class="md-nav__toggle md-toggle" type="checkbox" id="__toc">
  466. <a href="./" class="md-nav__link md-nav__link--active">
  467. <span class="md-ellipsis">
  468. API specification
  469. </span>
  470. </a>
  471. </li>
  472. <li class="md-nav__item">
  473. <a href="../controller-options/" class="md-nav__link">
  474. <span class="md-ellipsis">
  475. Controller Options
  476. </span>
  477. </a>
  478. </li>
  479. <li class="md-nav__item">
  480. <a href="../metrics/" class="md-nav__link">
  481. <span class="md-ellipsis">
  482. Metrics
  483. </span>
  484. </a>
  485. </li>
  486. <li class="md-nav__item">
  487. <a href="../selectable-fields/" class="md-nav__link">
  488. <span class="md-ellipsis">
  489. Selectable Fields
  490. </span>
  491. </a>
  492. </li>
  493. </ul>
  494. </nav>
  495. </li>
  496. </ul>
  497. </nav>
  498. </li>
  499. <li class="md-nav__item md-nav__item--nested">
  500. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3" >
  501. <label class="md-nav__link" for="__nav_3" id="__nav_3_label" tabindex="0">
  502. <span class="md-ellipsis">
  503. Guides
  504. </span>
  505. <span class="md-nav__icon md-icon"></span>
  506. </label>
  507. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_3_label" aria-expanded="false">
  508. <label class="md-nav__title" for="__nav_3">
  509. <span class="md-nav__icon md-icon"></span>
  510. Guides
  511. </label>
  512. <ul class="md-nav__list" data-md-scrollfix>
  513. <li class="md-nav__item">
  514. <a href="../../guides/introduction/" class="md-nav__link">
  515. <span class="md-ellipsis">
  516. Introduction
  517. </span>
  518. </a>
  519. </li>
  520. <li class="md-nav__item md-nav__item--nested">
  521. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2" >
  522. <label class="md-nav__link" for="__nav_3_2" id="__nav_3_2_label" tabindex="0">
  523. <span class="md-ellipsis">
  524. External Secrets
  525. </span>
  526. <span class="md-nav__icon md-icon"></span>
  527. </label>
  528. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_2_label" aria-expanded="false">
  529. <label class="md-nav__title" for="__nav_3_2">
  530. <span class="md-nav__icon md-icon"></span>
  531. External Secrets
  532. </label>
  533. <ul class="md-nav__list" data-md-scrollfix>
  534. <li class="md-nav__item">
  535. <a href="../../guides/all-keys-one-secret/" class="md-nav__link">
  536. <span class="md-ellipsis">
  537. Extract structured data
  538. </span>
  539. </a>
  540. </li>
  541. <li class="md-nav__item">
  542. <a href="../../guides/getallsecrets/" class="md-nav__link">
  543. <span class="md-ellipsis">
  544. Find Secrets by Name or Metadata
  545. </span>
  546. </a>
  547. </li>
  548. <li class="md-nav__item">
  549. <a href="../../guides/datafrom-rewrite/" class="md-nav__link">
  550. <span class="md-ellipsis">
  551. Rewriting Keys
  552. </span>
  553. </a>
  554. </li>
  555. <li class="md-nav__item md-nav__item--nested">
  556. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2_4" >
  557. <label class="md-nav__link" for="__nav_3_2_4" id="__nav_3_2_4_label" tabindex="0">
  558. <span class="md-ellipsis">
  559. Advanced Templating
  560. </span>
  561. <span class="md-nav__icon md-icon"></span>
  562. </label>
  563. <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_3_2_4_label" aria-expanded="false">
  564. <label class="md-nav__title" for="__nav_3_2_4">
  565. <span class="md-nav__icon md-icon"></span>
  566. Advanced Templating
  567. </label>
  568. <ul class="md-nav__list" data-md-scrollfix>
  569. <li class="md-nav__item">
  570. <a href="../../guides/templating/" class="md-nav__link">
  571. <span class="md-ellipsis">
  572. v2
  573. </span>
  574. </a>
  575. </li>
  576. <li class="md-nav__item">
  577. <a href="../../guides/templating-v1/" class="md-nav__link">
  578. <span class="md-ellipsis">
  579. v1
  580. </span>
  581. </a>
  582. </li>
  583. </ul>
  584. </nav>
  585. </li>
  586. <li class="md-nav__item">
  587. <a href="../../guides/common-k8s-secret-types/" class="md-nav__link">
  588. <span class="md-ellipsis">
  589. Kubernetes Secret Types
  590. </span>
  591. </a>
  592. </li>
  593. <li class="md-nav__item">
  594. <a href="../../guides/ownership-deletion-policy/" class="md-nav__link">
  595. <span class="md-ellipsis">
  596. Lifecycle: ownership & deletion
  597. </span>
  598. </a>
  599. </li>
  600. <li class="md-nav__item">
  601. <a href="../../guides/decoding-strategy/" class="md-nav__link">
  602. <span class="md-ellipsis">
  603. Decoding Strategies
  604. </span>
  605. </a>
  606. </li>
  607. <li class="md-nav__item">
  608. <a href="../../guides/controller-class/" class="md-nav__link">
  609. <span class="md-ellipsis">
  610. Controller Classes
  611. </span>
  612. </a>
  613. </li>
  614. </ul>
  615. </nav>
  616. </li>
  617. <li class="md-nav__item">
  618. <a href="../../guides/generator/" class="md-nav__link">
  619. <span class="md-ellipsis">
  620. Generators
  621. </span>
  622. </a>
  623. </li>
  624. <li class="md-nav__item">
  625. <a href="../../guides/pushsecrets/" class="md-nav__link">
  626. <span class="md-ellipsis">
  627. Push Secrets
  628. </span>
  629. </a>
  630. </li>
  631. <li class="md-nav__item md-nav__item--nested">
  632. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_5" >
  633. <label class="md-nav__link" for="__nav_3_5" id="__nav_3_5_label" tabindex="0">
  634. <span class="md-ellipsis">
  635. Operations
  636. </span>
  637. <span class="md-nav__icon md-icon"></span>
  638. </label>
  639. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_5_label" aria-expanded="false">
  640. <label class="md-nav__title" for="__nav_3_5">
  641. <span class="md-nav__icon md-icon"></span>
  642. Operations
  643. </label>
  644. <ul class="md-nav__list" data-md-scrollfix>
  645. <li class="md-nav__item">
  646. <a href="../../guides/multi-tenancy/" class="md-nav__link">
  647. <span class="md-ellipsis">
  648. Multi Tenancy
  649. </span>
  650. </a>
  651. </li>
  652. <li class="md-nav__item">
  653. <a href="../../guides/security-best-practices/" class="md-nav__link">
  654. <span class="md-ellipsis">
  655. Security Best Practices
  656. </span>
  657. </a>
  658. </li>
  659. <li class="md-nav__item">
  660. <a href="../../guides/threat-model/" class="md-nav__link">
  661. <span class="md-ellipsis">
  662. Threat Model
  663. </span>
  664. </a>
  665. </li>
  666. <li class="md-nav__item">
  667. <a href="../../guides/v1beta1/" class="md-nav__link">
  668. <span class="md-ellipsis">
  669. Upgrading to v1beta1
  670. </span>
  671. </a>
  672. </li>
  673. <li class="md-nav__item">
  674. <a href="../../guides/using-latest-image/" class="md-nav__link">
  675. <span class="md-ellipsis">
  676. Using Latest Image
  677. </span>
  678. </a>
  679. </li>
  680. <li class="md-nav__item">
  681. <a href="../../guides/disable-cluster-features/" class="md-nav__link">
  682. <span class="md-ellipsis">
  683. Disable Cluster Features
  684. </span>
  685. </a>
  686. </li>
  687. </ul>
  688. </nav>
  689. </li>
  690. <li class="md-nav__item md-nav__item--nested">
  691. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_6" >
  692. <label class="md-nav__link" for="__nav_3_6" id="__nav_3_6_label" tabindex="0">
  693. <span class="md-ellipsis">
  694. Tooling
  695. </span>
  696. <span class="md-nav__icon md-icon"></span>
  697. </label>
  698. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_6_label" aria-expanded="false">
  699. <label class="md-nav__title" for="__nav_3_6">
  700. <span class="md-nav__icon md-icon"></span>
  701. Tooling
  702. </label>
  703. <ul class="md-nav__list" data-md-scrollfix>
  704. <li class="md-nav__item">
  705. <a href="../../guides/using-esoctl-tool/" class="md-nav__link">
  706. <span class="md-ellipsis">
  707. Using the esoctl tool
  708. </span>
  709. </a>
  710. </li>
  711. </ul>
  712. </nav>
  713. </li>
  714. </ul>
  715. </nav>
  716. </li>
  717. <li class="md-nav__item md-nav__item--nested">
  718. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_4" >
  719. <label class="md-nav__link" for="__nav_4" id="__nav_4_label" tabindex="0">
  720. <span class="md-ellipsis">
  721. Provider
  722. </span>
  723. <span class="md-nav__icon md-icon"></span>
  724. </label>
  725. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_4_label" aria-expanded="false">
  726. <label class="md-nav__title" for="__nav_4">
  727. <span class="md-nav__icon md-icon"></span>
  728. Provider
  729. </label>
  730. <ul class="md-nav__list" data-md-scrollfix>
  731. <li class="md-nav__item">
  732. <a href="../../provider/aws-secrets-manager/" class="md-nav__link">
  733. <span class="md-ellipsis">
  734. AWS Secrets Manager
  735. </span>
  736. </a>
  737. </li>
  738. <li class="md-nav__item">
  739. <a href="../../provider/aws-parameter-store/" class="md-nav__link">
  740. <span class="md-ellipsis">
  741. AWS Parameter Store
  742. </span>
  743. </a>
  744. </li>
  745. <li class="md-nav__item">
  746. <a href="../../provider/azure-key-vault/" class="md-nav__link">
  747. <span class="md-ellipsis">
  748. Azure Key Vault
  749. </span>
  750. </a>
  751. </li>
  752. <li class="md-nav__item">
  753. <a href="../../provider/beyondtrust/" class="md-nav__link">
  754. <span class="md-ellipsis">
  755. BeyondTrust
  756. </span>
  757. </a>
  758. </li>
  759. <li class="md-nav__item">
  760. <a href="../../provider/bitwarden-secrets-manager/" class="md-nav__link">
  761. <span class="md-ellipsis">
  762. Bitwarden Secrets Manager
  763. </span>
  764. </a>
  765. </li>
  766. <li class="md-nav__item">
  767. <a href="../../provider/chef/" class="md-nav__link">
  768. <span class="md-ellipsis">
  769. Chef
  770. </span>
  771. </a>
  772. </li>
  773. <li class="md-nav__item">
  774. <a href="../../provider/cloudru/" class="md-nav__link">
  775. <span class="md-ellipsis">
  776. Cloud.ru Secret Manager
  777. </span>
  778. </a>
  779. </li>
  780. <li class="md-nav__item">
  781. <a href="../../provider/conjur/" class="md-nav__link">
  782. <span class="md-ellipsis">
  783. CyberArk Conjur
  784. </span>
  785. </a>
  786. </li>
  787. <li class="md-nav__item">
  788. <a href="../../provider/device42/" class="md-nav__link">
  789. <span class="md-ellipsis">
  790. Device42
  791. </span>
  792. </a>
  793. </li>
  794. <li class="md-nav__item">
  795. <a href="../../provider/google-secrets-manager/" class="md-nav__link">
  796. <span class="md-ellipsis">
  797. Google Cloud Secret Manager
  798. </span>
  799. </a>
  800. </li>
  801. <li class="md-nav__item">
  802. <a href="../../provider/hashicorp-vault/" class="md-nav__link">
  803. <span class="md-ellipsis">
  804. HashiCorp Vault
  805. </span>
  806. </a>
  807. </li>
  808. <li class="md-nav__item">
  809. <a href="../../provider/kubernetes/" class="md-nav__link">
  810. <span class="md-ellipsis">
  811. Kubernetes
  812. </span>
  813. </a>
  814. </li>
  815. <li class="md-nav__item">
  816. <a href="../../provider/ibm-secrets-manager/" class="md-nav__link">
  817. <span class="md-ellipsis">
  818. IBM Secrets Manager
  819. </span>
  820. </a>
  821. </li>
  822. <li class="md-nav__item">
  823. <a href="../../provider/akeyless/" class="md-nav__link">
  824. <span class="md-ellipsis">
  825. Akeyless
  826. </span>
  827. </a>
  828. </li>
  829. <li class="md-nav__item">
  830. <a href="../../provider/yandex-certificate-manager/" class="md-nav__link">
  831. <span class="md-ellipsis">
  832. Yandex Certificate Manager
  833. </span>
  834. </a>
  835. </li>
  836. <li class="md-nav__item">
  837. <a href="../../provider/yandex-lockbox/" class="md-nav__link">
  838. <span class="md-ellipsis">
  839. Yandex Lockbox
  840. </span>
  841. </a>
  842. </li>
  843. <li class="md-nav__item">
  844. <a href="../../provider/alibaba/" class="md-nav__link">
  845. <span class="md-ellipsis">
  846. Alibaba Cloud
  847. </span>
  848. </a>
  849. </li>
  850. <li class="md-nav__item">
  851. <a href="../../provider/gitlab-variables/" class="md-nav__link">
  852. <span class="md-ellipsis">
  853. GitLab Variables
  854. </span>
  855. </a>
  856. </li>
  857. <li class="md-nav__item">
  858. <a href="../../provider/github/" class="md-nav__link">
  859. <span class="md-ellipsis">
  860. Github Actions Secrets
  861. </span>
  862. </a>
  863. </li>
  864. <li class="md-nav__item">
  865. <a href="../../provider/oracle-vault/" class="md-nav__link">
  866. <span class="md-ellipsis">
  867. Oracle Vault
  868. </span>
  869. </a>
  870. </li>
  871. <li class="md-nav__item">
  872. <a href="../../provider/1password-automation/" class="md-nav__link">
  873. <span class="md-ellipsis">
  874. 1Password Connect Server
  875. </span>
  876. </a>
  877. </li>
  878. <li class="md-nav__item">
  879. <a href="../../provider/1password-sdk/" class="md-nav__link">
  880. <span class="md-ellipsis">
  881. 1Password SDK
  882. </span>
  883. </a>
  884. </li>
  885. <li class="md-nav__item">
  886. <a href="../../provider/webhook/" class="md-nav__link">
  887. <span class="md-ellipsis">
  888. Webhook
  889. </span>
  890. </a>
  891. </li>
  892. <li class="md-nav__item">
  893. <a href="../../provider/fake/" class="md-nav__link">
  894. <span class="md-ellipsis">
  895. Fake
  896. </span>
  897. </a>
  898. </li>
  899. <li class="md-nav__item">
  900. <a href="../../provider/senhasegura-dsm/" class="md-nav__link">
  901. <span class="md-ellipsis">
  902. senhasegura DevOps Secrets Management (DSM)
  903. </span>
  904. </a>
  905. </li>
  906. <li class="md-nav__item">
  907. <a href="../../provider/doppler/" class="md-nav__link">
  908. <span class="md-ellipsis">
  909. Doppler
  910. </span>
  911. </a>
  912. </li>
  913. <li class="md-nav__item">
  914. <a href="../../provider/keeper-security/" class="md-nav__link">
  915. <span class="md-ellipsis">
  916. Keeper Security
  917. </span>
  918. </a>
  919. </li>
  920. <li class="md-nav__item">
  921. <a href="../../provider/cloak/" class="md-nav__link">
  922. <span class="md-ellipsis">
  923. Cloak End 2 End Encrypted Secrets
  924. </span>
  925. </a>
  926. </li>
  927. <li class="md-nav__item">
  928. <a href="../../provider/scaleway/" class="md-nav__link">
  929. <span class="md-ellipsis">
  930. Scaleway
  931. </span>
  932. </a>
  933. </li>
  934. <li class="md-nav__item">
  935. <a href="../../provider/delinea/" class="md-nav__link">
  936. <span class="md-ellipsis">
  937. Delinea
  938. </span>
  939. </a>
  940. </li>
  941. <li class="md-nav__item">
  942. <a href="../../provider/secretserver/" class="md-nav__link">
  943. <span class="md-ellipsis">
  944. Secret Server
  945. </span>
  946. </a>
  947. </li>
  948. <li class="md-nav__item">
  949. <a href="../../provider/passbolt/" class="md-nav__link">
  950. <span class="md-ellipsis">
  951. Passbolt
  952. </span>
  953. </a>
  954. </li>
  955. <li class="md-nav__item">
  956. <a href="../../provider/pulumi/" class="md-nav__link">
  957. <span class="md-ellipsis">
  958. Pulumi ESC
  959. </span>
  960. </a>
  961. </li>
  962. <li class="md-nav__item">
  963. <a href="../../provider/onboardbase/" class="md-nav__link">
  964. <span class="md-ellipsis">
  965. Onboardbase
  966. </span>
  967. </a>
  968. </li>
  969. <li class="md-nav__item">
  970. <a href="../../provider-passworddepot/" class="md-nav__link">
  971. <span class="md-ellipsis">
  972. Password Depot
  973. </span>
  974. </a>
  975. </li>
  976. <li class="md-nav__item">
  977. <a href="../../provider/fortanix/" class="md-nav__link">
  978. <span class="md-ellipsis">
  979. Fortanix
  980. </span>
  981. </a>
  982. </li>
  983. <li class="md-nav__item">
  984. <a href="../../provider/infisical/" class="md-nav__link">
  985. <span class="md-ellipsis">
  986. Infisical
  987. </span>
  988. </a>
  989. </li>
  990. <li class="md-nav__item">
  991. <a href="../../provider/previder/" class="md-nav__link">
  992. <span class="md-ellipsis">
  993. Previder
  994. </span>
  995. </a>
  996. </li>
  997. <li class="md-nav__item">
  998. <a href="../../provider/openbao/" class="md-nav__link">
  999. <span class="md-ellipsis">
  1000. OpenBao
  1001. </span>
  1002. </a>
  1003. </li>
  1004. <li class="md-nav__item">
  1005. <a href="../../provider/volcengine/" class="md-nav__link">
  1006. <span class="md-ellipsis">
  1007. Volcengine
  1008. </span>
  1009. </a>
  1010. </li>
  1011. </ul>
  1012. </nav>
  1013. </li>
  1014. <li class="md-nav__item md-nav__item--nested">
  1015. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_5" >
  1016. <label class="md-nav__link" for="__nav_5" id="__nav_5_label" tabindex="0">
  1017. <span class="md-ellipsis">
  1018. Examples
  1019. </span>
  1020. <span class="md-nav__icon md-icon"></span>
  1021. </label>
  1022. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_5_label" aria-expanded="false">
  1023. <label class="md-nav__title" for="__nav_5">
  1024. <span class="md-nav__icon md-icon"></span>
  1025. Examples
  1026. </label>
  1027. <ul class="md-nav__list" data-md-scrollfix>
  1028. <li class="md-nav__item">
  1029. <a href="../../examples/gitops-using-fluxcd/" class="md-nav__link">
  1030. <span class="md-ellipsis">
  1031. FluxCD
  1032. </span>
  1033. </a>
  1034. </li>
  1035. <li class="md-nav__item">
  1036. <a href="../../examples/anchore-engine-credentials/" class="md-nav__link">
  1037. <span class="md-ellipsis">
  1038. Anchore Engine
  1039. </span>
  1040. </a>
  1041. </li>
  1042. <li class="md-nav__item">
  1043. <a href="../../examples/jenkins-kubernetes-credentials/" class="md-nav__link">
  1044. <span class="md-ellipsis">
  1045. Jenkins
  1046. </span>
  1047. </a>
  1048. </li>
  1049. <li class="md-nav__item">
  1050. <a href="../../examples/bitwarden/" class="md-nav__link">
  1051. <span class="md-ellipsis">
  1052. Bitwarden
  1053. </span>
  1054. </a>
  1055. </li>
  1056. </ul>
  1057. </nav>
  1058. </li>
  1059. <li class="md-nav__item md-nav__item--nested">
  1060. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6" >
  1061. <label class="md-nav__link" for="__nav_6" id="__nav_6_label" tabindex="0">
  1062. <span class="md-ellipsis">
  1063. Community
  1064. </span>
  1065. <span class="md-nav__icon md-icon"></span>
  1066. </label>
  1067. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_6_label" aria-expanded="false">
  1068. <label class="md-nav__title" for="__nav_6">
  1069. <span class="md-nav__icon md-icon"></span>
  1070. Community
  1071. </label>
  1072. <ul class="md-nav__list" data-md-scrollfix>
  1073. <li class="md-nav__item md-nav__item--nested">
  1074. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_1" >
  1075. <label class="md-nav__link" for="__nav_6_1" id="__nav_6_1_label" tabindex="0">
  1076. <span class="md-ellipsis">
  1077. Contributing
  1078. </span>
  1079. <span class="md-nav__icon md-icon"></span>
  1080. </label>
  1081. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_1_label" aria-expanded="false">
  1082. <label class="md-nav__title" for="__nav_6_1">
  1083. <span class="md-nav__icon md-icon"></span>
  1084. Contributing
  1085. </label>
  1086. <ul class="md-nav__list" data-md-scrollfix>
  1087. <li class="md-nav__item">
  1088. <a href="../../contributing/devguide/" class="md-nav__link">
  1089. <span class="md-ellipsis">
  1090. Developer guide
  1091. </span>
  1092. </a>
  1093. </li>
  1094. <li class="md-nav__item">
  1095. <a href="../../contributing/process/" class="md-nav__link">
  1096. <span class="md-ellipsis">
  1097. Contributing Process
  1098. </span>
  1099. </a>
  1100. </li>
  1101. <li class="md-nav__item">
  1102. <a href="../../contributing/release/" class="md-nav__link">
  1103. <span class="md-ellipsis">
  1104. Release Process
  1105. </span>
  1106. </a>
  1107. </li>
  1108. <li class="md-nav__item">
  1109. <a href="../../contributing/coc/" class="md-nav__link">
  1110. <span class="md-ellipsis">
  1111. Code of Conduct
  1112. </span>
  1113. </a>
  1114. </li>
  1115. <li class="md-nav__item">
  1116. <a href="../../contributing/calendar/" class="md-nav__link">
  1117. <span class="md-ellipsis">
  1118. Community meetings calendar
  1119. </span>
  1120. </a>
  1121. </li>
  1122. <li class="md-nav__item">
  1123. <a href="../../contributing/roadmap/" class="md-nav__link">
  1124. <span class="md-ellipsis">
  1125. Roadmap
  1126. </span>
  1127. </a>
  1128. </li>
  1129. <li class="md-nav__item">
  1130. <a href="../../contributing/burnout-mitigation/" class="md-nav__link">
  1131. <span class="md-ellipsis">
  1132. Burnout Prevention
  1133. </span>
  1134. </a>
  1135. </li>
  1136. </ul>
  1137. </nav>
  1138. </li>
  1139. <li class="md-nav__item md-nav__item--nested">
  1140. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_2" >
  1141. <label class="md-nav__link" for="__nav_6_2" id="__nav_6_2_label" tabindex="0">
  1142. <span class="md-ellipsis">
  1143. External Resources
  1144. </span>
  1145. <span class="md-nav__icon md-icon"></span>
  1146. </label>
  1147. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_2_label" aria-expanded="false">
  1148. <label class="md-nav__title" for="__nav_6_2">
  1149. <span class="md-nav__icon md-icon"></span>
  1150. External Resources
  1151. </label>
  1152. <ul class="md-nav__list" data-md-scrollfix>
  1153. <li class="md-nav__item">
  1154. <a href="../../eso-talks/" class="md-nav__link">
  1155. <span class="md-ellipsis">
  1156. Talks
  1157. </span>
  1158. </a>
  1159. </li>
  1160. <li class="md-nav__item">
  1161. <a href="../../eso-demos/" class="md-nav__link">
  1162. <span class="md-ellipsis">
  1163. Demos
  1164. </span>
  1165. </a>
  1166. </li>
  1167. <li class="md-nav__item">
  1168. <a href="../../eso-blogs/" class="md-nav__link">
  1169. <span class="md-ellipsis">
  1170. Blogs
  1171. </span>
  1172. </a>
  1173. </li>
  1174. <li class="md-nav__item">
  1175. <a href="../../eso-tools/" class="md-nav__link">
  1176. <span class="md-ellipsis">
  1177. Tools
  1178. </span>
  1179. </a>
  1180. </li>
  1181. </ul>
  1182. </nav>
  1183. </li>
  1184. </ul>
  1185. </nav>
  1186. </li>
  1187. </ul>
  1188. </nav>
  1189. </div>
  1190. </div>
  1191. </div>
  1192. <div class="md-sidebar md-sidebar--secondary" data-md-component="sidebar" data-md-type="toc" >
  1193. <div class="md-sidebar__scrollwrap">
  1194. <div class="md-sidebar__inner">
  1195. <nav class="md-nav md-nav--secondary" aria-label="Table of contents">
  1196. </nav>
  1197. </div>
  1198. </div>
  1199. </div>
  1200. <div class="md-content" data-md-component="content">
  1201. <article class="md-content__inner md-typeset">
  1202. <h1>API specification</h1>
  1203. <p>Packages:</p>
  1204. <ul>
  1205. <li>
  1206. <a href="#external-secrets.io%2fv1">external-secrets.io/v1</a>
  1207. </li>
  1208. </ul>
  1209. <h2 id="external-secrets.io/v1">external-secrets.io/v1</h2>
  1210. <p>
  1211. <p>Package v1 contains resources for external-secrets</p>
  1212. </p>
  1213. <p>Resource Types:</p>
  1214. <ul></ul>
  1215. <h3 id="external-secrets.io/v1.AWSAuth">AWSAuth
  1216. </h3>
  1217. <p>
  1218. (<em>Appears on:</em>
  1219. <a href="#external-secrets.io/v1.AWSProvider">AWSProvider</a>)
  1220. </p>
  1221. <p>
  1222. <p>AWSAuth tells the controller how to do authentication with aws.
  1223. Only one of secretRef or jwt can be specified.
  1224. if none is specified the controller will load credentials using the aws sdk defaults.</p>
  1225. </p>
  1226. <table>
  1227. <thead>
  1228. <tr>
  1229. <th>Field</th>
  1230. <th>Description</th>
  1231. </tr>
  1232. </thead>
  1233. <tbody>
  1234. <tr>
  1235. <td>
  1236. <code>secretRef</code></br>
  1237. <em>
  1238. <a href="#external-secrets.io/v1.AWSAuthSecretRef">
  1239. AWSAuthSecretRef
  1240. </a>
  1241. </em>
  1242. </td>
  1243. <td>
  1244. <em>(Optional)</em>
  1245. </td>
  1246. </tr>
  1247. <tr>
  1248. <td>
  1249. <code>jwt</code></br>
  1250. <em>
  1251. <a href="#external-secrets.io/v1.AWSJWTAuth">
  1252. AWSJWTAuth
  1253. </a>
  1254. </em>
  1255. </td>
  1256. <td>
  1257. <em>(Optional)</em>
  1258. </td>
  1259. </tr>
  1260. </tbody>
  1261. </table>
  1262. <h3 id="external-secrets.io/v1.AWSAuthSecretRef">AWSAuthSecretRef
  1263. </h3>
  1264. <p>
  1265. (<em>Appears on:</em>
  1266. <a href="#external-secrets.io/v1.AWSAuth">AWSAuth</a>)
  1267. </p>
  1268. <p>
  1269. <p>AWSAuthSecretRef holds secret references for AWS credentials
  1270. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  1271. </p>
  1272. <table>
  1273. <thead>
  1274. <tr>
  1275. <th>Field</th>
  1276. <th>Description</th>
  1277. </tr>
  1278. </thead>
  1279. <tbody>
  1280. <tr>
  1281. <td>
  1282. <code>accessKeyIDSecretRef</code></br>
  1283. <em>
  1284. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1285. External Secrets meta/v1.SecretKeySelector
  1286. </a>
  1287. </em>
  1288. </td>
  1289. <td>
  1290. <p>The AccessKeyID is used for authentication</p>
  1291. </td>
  1292. </tr>
  1293. <tr>
  1294. <td>
  1295. <code>secretAccessKeySecretRef</code></br>
  1296. <em>
  1297. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1298. External Secrets meta/v1.SecretKeySelector
  1299. </a>
  1300. </em>
  1301. </td>
  1302. <td>
  1303. <p>The SecretAccessKey is used for authentication</p>
  1304. </td>
  1305. </tr>
  1306. <tr>
  1307. <td>
  1308. <code>sessionTokenSecretRef</code></br>
  1309. <em>
  1310. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1311. External Secrets meta/v1.SecretKeySelector
  1312. </a>
  1313. </em>
  1314. </td>
  1315. <td>
  1316. <p>The SessionToken used for authentication
  1317. This must be defined if AccessKeyID and SecretAccessKey are temporary credentials
  1318. see: <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html">https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html</a></p>
  1319. </td>
  1320. </tr>
  1321. </tbody>
  1322. </table>
  1323. <h3 id="external-secrets.io/v1.AWSJWTAuth">AWSJWTAuth
  1324. </h3>
  1325. <p>
  1326. (<em>Appears on:</em>
  1327. <a href="#external-secrets.io/v1.AWSAuth">AWSAuth</a>)
  1328. </p>
  1329. <p>
  1330. <p>Authenticate against AWS using service account tokens.</p>
  1331. </p>
  1332. <table>
  1333. <thead>
  1334. <tr>
  1335. <th>Field</th>
  1336. <th>Description</th>
  1337. </tr>
  1338. </thead>
  1339. <tbody>
  1340. <tr>
  1341. <td>
  1342. <code>serviceAccountRef</code></br>
  1343. <em>
  1344. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  1345. External Secrets meta/v1.ServiceAccountSelector
  1346. </a>
  1347. </em>
  1348. </td>
  1349. <td>
  1350. </td>
  1351. </tr>
  1352. </tbody>
  1353. </table>
  1354. <h3 id="external-secrets.io/v1.AWSProvider">AWSProvider
  1355. </h3>
  1356. <p>
  1357. (<em>Appears on:</em>
  1358. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  1359. </p>
  1360. <p>
  1361. <p>AWSProvider configures a store to sync secrets with AWS.</p>
  1362. </p>
  1363. <table>
  1364. <thead>
  1365. <tr>
  1366. <th>Field</th>
  1367. <th>Description</th>
  1368. </tr>
  1369. </thead>
  1370. <tbody>
  1371. <tr>
  1372. <td>
  1373. <code>service</code></br>
  1374. <em>
  1375. <a href="#external-secrets.io/v1.AWSServiceType">
  1376. AWSServiceType
  1377. </a>
  1378. </em>
  1379. </td>
  1380. <td>
  1381. <p>Service defines which service should be used to fetch the secrets</p>
  1382. </td>
  1383. </tr>
  1384. <tr>
  1385. <td>
  1386. <code>auth</code></br>
  1387. <em>
  1388. <a href="#external-secrets.io/v1.AWSAuth">
  1389. AWSAuth
  1390. </a>
  1391. </em>
  1392. </td>
  1393. <td>
  1394. <em>(Optional)</em>
  1395. <p>Auth defines the information necessary to authenticate against AWS
  1396. if not set aws sdk will infer credentials from your environment
  1397. see: <a href="https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials">https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials</a></p>
  1398. </td>
  1399. </tr>
  1400. <tr>
  1401. <td>
  1402. <code>role</code></br>
  1403. <em>
  1404. string
  1405. </em>
  1406. </td>
  1407. <td>
  1408. <em>(Optional)</em>
  1409. <p>Role is a Role ARN which the provider will assume</p>
  1410. </td>
  1411. </tr>
  1412. <tr>
  1413. <td>
  1414. <code>region</code></br>
  1415. <em>
  1416. string
  1417. </em>
  1418. </td>
  1419. <td>
  1420. <p>AWS Region to be used for the provider</p>
  1421. </td>
  1422. </tr>
  1423. <tr>
  1424. <td>
  1425. <code>additionalRoles</code></br>
  1426. <em>
  1427. []string
  1428. </em>
  1429. </td>
  1430. <td>
  1431. <em>(Optional)</em>
  1432. <p>AdditionalRoles is a chained list of Role ARNs which the provider will sequentially assume before assuming the Role</p>
  1433. </td>
  1434. </tr>
  1435. <tr>
  1436. <td>
  1437. <code>externalID</code></br>
  1438. <em>
  1439. string
  1440. </em>
  1441. </td>
  1442. <td>
  1443. <p>AWS External ID set on assumed IAM roles</p>
  1444. </td>
  1445. </tr>
  1446. <tr>
  1447. <td>
  1448. <code>sessionTags</code></br>
  1449. <em>
  1450. <a href="#external-secrets.io/v1.*github.com/external-secrets/external-secrets/apis/externalsecrets/v1.Tag">
  1451. []*github.com/external-secrets/external-secrets/apis/externalsecrets/v1.Tag
  1452. </a>
  1453. </em>
  1454. </td>
  1455. <td>
  1456. <em>(Optional)</em>
  1457. <p>AWS STS assume role session tags</p>
  1458. </td>
  1459. </tr>
  1460. <tr>
  1461. <td>
  1462. <code>secretsManager</code></br>
  1463. <em>
  1464. <a href="#external-secrets.io/v1.SecretsManager">
  1465. SecretsManager
  1466. </a>
  1467. </em>
  1468. </td>
  1469. <td>
  1470. <em>(Optional)</em>
  1471. <p>SecretsManager defines how the provider behaves when interacting with AWS SecretsManager</p>
  1472. </td>
  1473. </tr>
  1474. <tr>
  1475. <td>
  1476. <code>transitiveTagKeys</code></br>
  1477. <em>
  1478. []string
  1479. </em>
  1480. </td>
  1481. <td>
  1482. <em>(Optional)</em>
  1483. <p>AWS STS assume role transitive session tags. Required when multiple rules are used with the provider</p>
  1484. </td>
  1485. </tr>
  1486. <tr>
  1487. <td>
  1488. <code>prefix</code></br>
  1489. <em>
  1490. string
  1491. </em>
  1492. </td>
  1493. <td>
  1494. <em>(Optional)</em>
  1495. <p>Prefix adds a prefix to all retrieved values.</p>
  1496. </td>
  1497. </tr>
  1498. </tbody>
  1499. </table>
  1500. <h3 id="external-secrets.io/v1.AWSServiceType">AWSServiceType
  1501. (<code>string</code> alias)</p></h3>
  1502. <p>
  1503. (<em>Appears on:</em>
  1504. <a href="#external-secrets.io/v1.AWSProvider">AWSProvider</a>)
  1505. </p>
  1506. <p>
  1507. <p>AWSServiceType is a enum that defines the service/API that is used to fetch the secrets.</p>
  1508. </p>
  1509. <table>
  1510. <thead>
  1511. <tr>
  1512. <th>Value</th>
  1513. <th>Description</th>
  1514. </tr>
  1515. </thead>
  1516. <tbody><tr><td><p>&#34;ParameterStore&#34;</p></td>
  1517. <td><p>AWSServiceParameterStore is the AWS SystemsManager ParameterStore service.
  1518. see: <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html">https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html</a></p>
  1519. </td>
  1520. </tr><tr><td><p>&#34;SecretsManager&#34;</p></td>
  1521. <td><p>AWSServiceSecretsManager is the AWS SecretsManager service.
  1522. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html">https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html</a></p>
  1523. </td>
  1524. </tr></tbody>
  1525. </table>
  1526. <h3 id="external-secrets.io/v1.AkeylessAuth">AkeylessAuth
  1527. </h3>
  1528. <p>
  1529. (<em>Appears on:</em>
  1530. <a href="#external-secrets.io/v1.AkeylessProvider">AkeylessProvider</a>)
  1531. </p>
  1532. <p>
  1533. </p>
  1534. <table>
  1535. <thead>
  1536. <tr>
  1537. <th>Field</th>
  1538. <th>Description</th>
  1539. </tr>
  1540. </thead>
  1541. <tbody>
  1542. <tr>
  1543. <td>
  1544. <code>secretRef</code></br>
  1545. <em>
  1546. <a href="#external-secrets.io/v1.AkeylessAuthSecretRef">
  1547. AkeylessAuthSecretRef
  1548. </a>
  1549. </em>
  1550. </td>
  1551. <td>
  1552. <em>(Optional)</em>
  1553. <p>Reference to a Secret that contains the details
  1554. to authenticate with Akeyless.</p>
  1555. </td>
  1556. </tr>
  1557. <tr>
  1558. <td>
  1559. <code>kubernetesAuth</code></br>
  1560. <em>
  1561. <a href="#external-secrets.io/v1.AkeylessKubernetesAuth">
  1562. AkeylessKubernetesAuth
  1563. </a>
  1564. </em>
  1565. </td>
  1566. <td>
  1567. <em>(Optional)</em>
  1568. <p>Kubernetes authenticates with Akeyless by passing the ServiceAccount
  1569. token stored in the named Secret resource.</p>
  1570. </td>
  1571. </tr>
  1572. </tbody>
  1573. </table>
  1574. <h3 id="external-secrets.io/v1.AkeylessAuthSecretRef">AkeylessAuthSecretRef
  1575. </h3>
  1576. <p>
  1577. (<em>Appears on:</em>
  1578. <a href="#external-secrets.io/v1.AkeylessAuth">AkeylessAuth</a>)
  1579. </p>
  1580. <p>
  1581. <p>AkeylessAuthSecretRef
  1582. AKEYLESS_ACCESS_TYPE_PARAM: AZURE_OBJ_ID OR GCP_AUDIENCE OR ACCESS_KEY OR KUB_CONFIG_NAME.</p>
  1583. </p>
  1584. <table>
  1585. <thead>
  1586. <tr>
  1587. <th>Field</th>
  1588. <th>Description</th>
  1589. </tr>
  1590. </thead>
  1591. <tbody>
  1592. <tr>
  1593. <td>
  1594. <code>accessID</code></br>
  1595. <em>
  1596. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1597. External Secrets meta/v1.SecretKeySelector
  1598. </a>
  1599. </em>
  1600. </td>
  1601. <td>
  1602. <p>The SecretAccessID is used for authentication</p>
  1603. </td>
  1604. </tr>
  1605. <tr>
  1606. <td>
  1607. <code>accessType</code></br>
  1608. <em>
  1609. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1610. External Secrets meta/v1.SecretKeySelector
  1611. </a>
  1612. </em>
  1613. </td>
  1614. <td>
  1615. </td>
  1616. </tr>
  1617. <tr>
  1618. <td>
  1619. <code>accessTypeParam</code></br>
  1620. <em>
  1621. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1622. External Secrets meta/v1.SecretKeySelector
  1623. </a>
  1624. </em>
  1625. </td>
  1626. <td>
  1627. </td>
  1628. </tr>
  1629. </tbody>
  1630. </table>
  1631. <h3 id="external-secrets.io/v1.AkeylessKubernetesAuth">AkeylessKubernetesAuth
  1632. </h3>
  1633. <p>
  1634. (<em>Appears on:</em>
  1635. <a href="#external-secrets.io/v1.AkeylessAuth">AkeylessAuth</a>)
  1636. </p>
  1637. <p>
  1638. <p>Authenticate with Kubernetes ServiceAccount token stored.</p>
  1639. </p>
  1640. <table>
  1641. <thead>
  1642. <tr>
  1643. <th>Field</th>
  1644. <th>Description</th>
  1645. </tr>
  1646. </thead>
  1647. <tbody>
  1648. <tr>
  1649. <td>
  1650. <code>accessID</code></br>
  1651. <em>
  1652. string
  1653. </em>
  1654. </td>
  1655. <td>
  1656. <p>the Akeyless Kubernetes auth-method access-id</p>
  1657. </td>
  1658. </tr>
  1659. <tr>
  1660. <td>
  1661. <code>k8sConfName</code></br>
  1662. <em>
  1663. string
  1664. </em>
  1665. </td>
  1666. <td>
  1667. <p>Kubernetes-auth configuration name in Akeyless-Gateway</p>
  1668. </td>
  1669. </tr>
  1670. <tr>
  1671. <td>
  1672. <code>serviceAccountRef</code></br>
  1673. <em>
  1674. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  1675. External Secrets meta/v1.ServiceAccountSelector
  1676. </a>
  1677. </em>
  1678. </td>
  1679. <td>
  1680. <em>(Optional)</em>
  1681. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  1682. If the service account is specified, the service account secret token JWT will be used
  1683. for authenticating with Akeyless. If the service account selector is not supplied,
  1684. the secretRef will be used instead.</p>
  1685. </td>
  1686. </tr>
  1687. <tr>
  1688. <td>
  1689. <code>secretRef</code></br>
  1690. <em>
  1691. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1692. External Secrets meta/v1.SecretKeySelector
  1693. </a>
  1694. </em>
  1695. </td>
  1696. <td>
  1697. <em>(Optional)</em>
  1698. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  1699. for authenticating with Akeyless. If a name is specified without a key,
  1700. <code>token</code> is the default. If one is not specified, the one bound to
  1701. the controller will be used.</p>
  1702. </td>
  1703. </tr>
  1704. </tbody>
  1705. </table>
  1706. <h3 id="external-secrets.io/v1.AkeylessProvider">AkeylessProvider
  1707. </h3>
  1708. <p>
  1709. (<em>Appears on:</em>
  1710. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  1711. </p>
  1712. <p>
  1713. <p>AkeylessProvider Configures an store to sync secrets using Akeyless KV.</p>
  1714. </p>
  1715. <table>
  1716. <thead>
  1717. <tr>
  1718. <th>Field</th>
  1719. <th>Description</th>
  1720. </tr>
  1721. </thead>
  1722. <tbody>
  1723. <tr>
  1724. <td>
  1725. <code>akeylessGWApiURL</code></br>
  1726. <em>
  1727. string
  1728. </em>
  1729. </td>
  1730. <td>
  1731. <p>Akeyless GW API Url from which the secrets to be fetched from.</p>
  1732. </td>
  1733. </tr>
  1734. <tr>
  1735. <td>
  1736. <code>authSecretRef</code></br>
  1737. <em>
  1738. <a href="#external-secrets.io/v1.AkeylessAuth">
  1739. AkeylessAuth
  1740. </a>
  1741. </em>
  1742. </td>
  1743. <td>
  1744. <p>Auth configures how the operator authenticates with Akeyless.</p>
  1745. </td>
  1746. </tr>
  1747. <tr>
  1748. <td>
  1749. <code>caBundle</code></br>
  1750. <em>
  1751. []byte
  1752. </em>
  1753. </td>
  1754. <td>
  1755. <em>(Optional)</em>
  1756. <p>PEM/base64 encoded CA bundle used to validate Akeyless Gateway certificate. Only used
  1757. if the AkeylessGWApiURL URL is using HTTPS protocol. If not set the system root certificates
  1758. are used to validate the TLS connection.</p>
  1759. </td>
  1760. </tr>
  1761. <tr>
  1762. <td>
  1763. <code>caProvider</code></br>
  1764. <em>
  1765. <a href="#external-secrets.io/v1.CAProvider">
  1766. CAProvider
  1767. </a>
  1768. </em>
  1769. </td>
  1770. <td>
  1771. <em>(Optional)</em>
  1772. <p>The provider for the CA bundle to use to validate Akeyless Gateway certificate.</p>
  1773. </td>
  1774. </tr>
  1775. </tbody>
  1776. </table>
  1777. <h3 id="external-secrets.io/v1.AlibabaAuth">AlibabaAuth
  1778. </h3>
  1779. <p>
  1780. (<em>Appears on:</em>
  1781. <a href="#external-secrets.io/v1.AlibabaProvider">AlibabaProvider</a>)
  1782. </p>
  1783. <p>
  1784. <p>AlibabaAuth contains a secretRef for credentials.</p>
  1785. </p>
  1786. <table>
  1787. <thead>
  1788. <tr>
  1789. <th>Field</th>
  1790. <th>Description</th>
  1791. </tr>
  1792. </thead>
  1793. <tbody>
  1794. <tr>
  1795. <td>
  1796. <code>secretRef</code></br>
  1797. <em>
  1798. <a href="#external-secrets.io/v1.AlibabaAuthSecretRef">
  1799. AlibabaAuthSecretRef
  1800. </a>
  1801. </em>
  1802. </td>
  1803. <td>
  1804. <em>(Optional)</em>
  1805. </td>
  1806. </tr>
  1807. <tr>
  1808. <td>
  1809. <code>rrsa</code></br>
  1810. <em>
  1811. <a href="#external-secrets.io/v1.AlibabaRRSAAuth">
  1812. AlibabaRRSAAuth
  1813. </a>
  1814. </em>
  1815. </td>
  1816. <td>
  1817. <em>(Optional)</em>
  1818. </td>
  1819. </tr>
  1820. </tbody>
  1821. </table>
  1822. <h3 id="external-secrets.io/v1.AlibabaAuthSecretRef">AlibabaAuthSecretRef
  1823. </h3>
  1824. <p>
  1825. (<em>Appears on:</em>
  1826. <a href="#external-secrets.io/v1.AlibabaAuth">AlibabaAuth</a>)
  1827. </p>
  1828. <p>
  1829. <p>AlibabaAuthSecretRef holds secret references for Alibaba credentials.</p>
  1830. </p>
  1831. <table>
  1832. <thead>
  1833. <tr>
  1834. <th>Field</th>
  1835. <th>Description</th>
  1836. </tr>
  1837. </thead>
  1838. <tbody>
  1839. <tr>
  1840. <td>
  1841. <code>accessKeyIDSecretRef</code></br>
  1842. <em>
  1843. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1844. External Secrets meta/v1.SecretKeySelector
  1845. </a>
  1846. </em>
  1847. </td>
  1848. <td>
  1849. <p>The AccessKeyID is used for authentication</p>
  1850. </td>
  1851. </tr>
  1852. <tr>
  1853. <td>
  1854. <code>accessKeySecretSecretRef</code></br>
  1855. <em>
  1856. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1857. External Secrets meta/v1.SecretKeySelector
  1858. </a>
  1859. </em>
  1860. </td>
  1861. <td>
  1862. <p>The AccessKeySecret is used for authentication</p>
  1863. </td>
  1864. </tr>
  1865. </tbody>
  1866. </table>
  1867. <h3 id="external-secrets.io/v1.AlibabaProvider">AlibabaProvider
  1868. </h3>
  1869. <p>
  1870. (<em>Appears on:</em>
  1871. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  1872. </p>
  1873. <p>
  1874. <p>AlibabaProvider configures a store to sync secrets using the Alibaba Secret Manager provider.</p>
  1875. </p>
  1876. <table>
  1877. <thead>
  1878. <tr>
  1879. <th>Field</th>
  1880. <th>Description</th>
  1881. </tr>
  1882. </thead>
  1883. <tbody>
  1884. <tr>
  1885. <td>
  1886. <code>auth</code></br>
  1887. <em>
  1888. <a href="#external-secrets.io/v1.AlibabaAuth">
  1889. AlibabaAuth
  1890. </a>
  1891. </em>
  1892. </td>
  1893. <td>
  1894. </td>
  1895. </tr>
  1896. <tr>
  1897. <td>
  1898. <code>regionID</code></br>
  1899. <em>
  1900. string
  1901. </em>
  1902. </td>
  1903. <td>
  1904. <p>Alibaba Region to be used for the provider</p>
  1905. </td>
  1906. </tr>
  1907. </tbody>
  1908. </table>
  1909. <h3 id="external-secrets.io/v1.AlibabaRRSAAuth">AlibabaRRSAAuth
  1910. </h3>
  1911. <p>
  1912. (<em>Appears on:</em>
  1913. <a href="#external-secrets.io/v1.AlibabaAuth">AlibabaAuth</a>)
  1914. </p>
  1915. <p>
  1916. <p>Authenticate against Alibaba using RRSA.</p>
  1917. </p>
  1918. <table>
  1919. <thead>
  1920. <tr>
  1921. <th>Field</th>
  1922. <th>Description</th>
  1923. </tr>
  1924. </thead>
  1925. <tbody>
  1926. <tr>
  1927. <td>
  1928. <code>oidcProviderArn</code></br>
  1929. <em>
  1930. string
  1931. </em>
  1932. </td>
  1933. <td>
  1934. </td>
  1935. </tr>
  1936. <tr>
  1937. <td>
  1938. <code>oidcTokenFilePath</code></br>
  1939. <em>
  1940. string
  1941. </em>
  1942. </td>
  1943. <td>
  1944. </td>
  1945. </tr>
  1946. <tr>
  1947. <td>
  1948. <code>roleArn</code></br>
  1949. <em>
  1950. string
  1951. </em>
  1952. </td>
  1953. <td>
  1954. </td>
  1955. </tr>
  1956. <tr>
  1957. <td>
  1958. <code>sessionName</code></br>
  1959. <em>
  1960. string
  1961. </em>
  1962. </td>
  1963. <td>
  1964. </td>
  1965. </tr>
  1966. </tbody>
  1967. </table>
  1968. <h3 id="external-secrets.io/v1.AuthorizationProtocol">AuthorizationProtocol
  1969. </h3>
  1970. <p>
  1971. (<em>Appears on:</em>
  1972. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  1973. </p>
  1974. <p>
  1975. <p>AuthorizationProtocol contains the protocol-specific configuration</p>
  1976. </p>
  1977. <table>
  1978. <thead>
  1979. <tr>
  1980. <th>Field</th>
  1981. <th>Description</th>
  1982. </tr>
  1983. </thead>
  1984. <tbody>
  1985. <tr>
  1986. <td>
  1987. <code>ntlm</code></br>
  1988. <em>
  1989. <a href="#external-secrets.io/v1.NTLMProtocol">
  1990. NTLMProtocol
  1991. </a>
  1992. </em>
  1993. </td>
  1994. <td>
  1995. <em>(Optional)</em>
  1996. <p>NTLMProtocol configures the store to use NTLM for auth</p>
  1997. </td>
  1998. </tr>
  1999. </tbody>
  2000. </table>
  2001. <h3 id="external-secrets.io/v1.AwsAuthCredentials">AwsAuthCredentials
  2002. </h3>
  2003. <p>
  2004. (<em>Appears on:</em>
  2005. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  2006. </p>
  2007. <p>
  2008. </p>
  2009. <table>
  2010. <thead>
  2011. <tr>
  2012. <th>Field</th>
  2013. <th>Description</th>
  2014. </tr>
  2015. </thead>
  2016. <tbody>
  2017. <tr>
  2018. <td>
  2019. <code>identityId</code></br>
  2020. <em>
  2021. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2022. External Secrets meta/v1.SecretKeySelector
  2023. </a>
  2024. </em>
  2025. </td>
  2026. <td>
  2027. </td>
  2028. </tr>
  2029. </tbody>
  2030. </table>
  2031. <h3 id="external-secrets.io/v1.AwsCredentialsConfig">AwsCredentialsConfig
  2032. </h3>
  2033. <p>
  2034. (<em>Appears on:</em>
  2035. <a href="#external-secrets.io/v1.GCPWorkloadIdentityFederation">GCPWorkloadIdentityFederation</a>)
  2036. </p>
  2037. <p>
  2038. <p>AwsCredentialsConfig holds the region and the Secret reference which contains the AWS credentials.</p>
  2039. </p>
  2040. <table>
  2041. <thead>
  2042. <tr>
  2043. <th>Field</th>
  2044. <th>Description</th>
  2045. </tr>
  2046. </thead>
  2047. <tbody>
  2048. <tr>
  2049. <td>
  2050. <code>region</code></br>
  2051. <em>
  2052. string
  2053. </em>
  2054. </td>
  2055. <td>
  2056. <p>region is for configuring the AWS region to be used.</p>
  2057. </td>
  2058. </tr>
  2059. <tr>
  2060. <td>
  2061. <code>awsCredentialsSecretRef</code></br>
  2062. <em>
  2063. <a href="#external-secrets.io/v1.SecretReference">
  2064. SecretReference
  2065. </a>
  2066. </em>
  2067. </td>
  2068. <td>
  2069. <p>awsCredentialsSecretRef is the reference to the secret which holds the AWS credentials.
  2070. Secret should be created with below names for keys
  2071. - aws_access_key_id: Access Key ID, which is the unique identifier for the AWS account or the IAM user.
  2072. - aws_secret_access_key: Secret Access Key, which is used to authenticate requests made to AWS services.
  2073. - aws_session_token: Session Token, is the short-lived token to authenticate requests made to AWS services.</p>
  2074. </td>
  2075. </tr>
  2076. </tbody>
  2077. </table>
  2078. <h3 id="external-secrets.io/v1.AzureAuthCredentials">AzureAuthCredentials
  2079. </h3>
  2080. <p>
  2081. (<em>Appears on:</em>
  2082. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  2083. </p>
  2084. <p>
  2085. </p>
  2086. <table>
  2087. <thead>
  2088. <tr>
  2089. <th>Field</th>
  2090. <th>Description</th>
  2091. </tr>
  2092. </thead>
  2093. <tbody>
  2094. <tr>
  2095. <td>
  2096. <code>identityId</code></br>
  2097. <em>
  2098. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2099. External Secrets meta/v1.SecretKeySelector
  2100. </a>
  2101. </em>
  2102. </td>
  2103. <td>
  2104. </td>
  2105. </tr>
  2106. <tr>
  2107. <td>
  2108. <code>resource</code></br>
  2109. <em>
  2110. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2111. External Secrets meta/v1.SecretKeySelector
  2112. </a>
  2113. </em>
  2114. </td>
  2115. <td>
  2116. <em>(Optional)</em>
  2117. </td>
  2118. </tr>
  2119. </tbody>
  2120. </table>
  2121. <h3 id="external-secrets.io/v1.AzureAuthType">AzureAuthType
  2122. (<code>string</code> alias)</p></h3>
  2123. <p>
  2124. (<em>Appears on:</em>
  2125. <a href="#external-secrets.io/v1.AzureKVProvider">AzureKVProvider</a>)
  2126. </p>
  2127. <p>
  2128. <p>AuthType describes how to authenticate to the Azure Keyvault
  2129. Only one of the following auth types may be specified.
  2130. If none of the following auth type is specified, the default one
  2131. is ServicePrincipal.</p>
  2132. </p>
  2133. <table>
  2134. <thead>
  2135. <tr>
  2136. <th>Value</th>
  2137. <th>Description</th>
  2138. </tr>
  2139. </thead>
  2140. <tbody><tr><td><p>&#34;ManagedIdentity&#34;</p></td>
  2141. <td><p>Using Managed Identity to authenticate. Used with aad-pod-identity installed in the cluster.</p>
  2142. </td>
  2143. </tr><tr><td><p>&#34;ServicePrincipal&#34;</p></td>
  2144. <td><p>Using service principal to authenticate, which needs a tenantId, a clientId and a clientSecret.</p>
  2145. </td>
  2146. </tr><tr><td><p>&#34;WorkloadIdentity&#34;</p></td>
  2147. <td><p>Using Workload Identity service accounts to authenticate.</p>
  2148. </td>
  2149. </tr></tbody>
  2150. </table>
  2151. <h3 id="external-secrets.io/v1.AzureCustomCloudConfig">AzureCustomCloudConfig
  2152. </h3>
  2153. <p>
  2154. (<em>Appears on:</em>
  2155. <a href="#external-secrets.io/v1.AzureKVProvider">AzureKVProvider</a>)
  2156. </p>
  2157. <p>
  2158. <p>AzureCustomCloudConfig specifies custom cloud configuration for private Azure environments
  2159. IMPORTANT: Custom cloud configuration is ONLY supported when UseAzureSDK is true.
  2160. The legacy go-autorest SDK does not support custom cloud endpoints.</p>
  2161. </p>
  2162. <table>
  2163. <thead>
  2164. <tr>
  2165. <th>Field</th>
  2166. <th>Description</th>
  2167. </tr>
  2168. </thead>
  2169. <tbody>
  2170. <tr>
  2171. <td>
  2172. <code>activeDirectoryEndpoint</code></br>
  2173. <em>
  2174. string
  2175. </em>
  2176. </td>
  2177. <td>
  2178. <p>ActiveDirectoryEndpoint is the AAD endpoint for authentication
  2179. Required when using custom cloud configuration</p>
  2180. </td>
  2181. </tr>
  2182. <tr>
  2183. <td>
  2184. <code>keyVaultEndpoint</code></br>
  2185. <em>
  2186. string
  2187. </em>
  2188. </td>
  2189. <td>
  2190. <em>(Optional)</em>
  2191. <p>KeyVaultEndpoint is the Key Vault service endpoint</p>
  2192. </td>
  2193. </tr>
  2194. <tr>
  2195. <td>
  2196. <code>keyVaultDNSSuffix</code></br>
  2197. <em>
  2198. string
  2199. </em>
  2200. </td>
  2201. <td>
  2202. <em>(Optional)</em>
  2203. <p>KeyVaultDNSSuffix is the DNS suffix for Key Vault URLs</p>
  2204. </td>
  2205. </tr>
  2206. <tr>
  2207. <td>
  2208. <code>resourceManagerEndpoint</code></br>
  2209. <em>
  2210. string
  2211. </em>
  2212. </td>
  2213. <td>
  2214. <em>(Optional)</em>
  2215. <p>ResourceManagerEndpoint is the Azure Resource Manager endpoint</p>
  2216. </td>
  2217. </tr>
  2218. </tbody>
  2219. </table>
  2220. <h3 id="external-secrets.io/v1.AzureEnvironmentType">AzureEnvironmentType
  2221. (<code>string</code> alias)</p></h3>
  2222. <p>
  2223. (<em>Appears on:</em>
  2224. <a href="#external-secrets.io/v1.AzureKVProvider">AzureKVProvider</a>)
  2225. </p>
  2226. <p>
  2227. <p>AzureEnvironmentType specifies the Azure cloud environment endpoints to use for
  2228. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  2229. The following endpoints are available, also see here: <a href="https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152">https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152</a>
  2230. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud, AzureStackCloud</p>
  2231. </p>
  2232. <table>
  2233. <thead>
  2234. <tr>
  2235. <th>Value</th>
  2236. <th>Description</th>
  2237. </tr>
  2238. </thead>
  2239. <tbody><tr><td><p>&#34;AzureStackCloud&#34;</p></td>
  2240. <td></td>
  2241. </tr><tr><td><p>&#34;ChinaCloud&#34;</p></td>
  2242. <td></td>
  2243. </tr><tr><td><p>&#34;GermanCloud&#34;</p></td>
  2244. <td></td>
  2245. </tr><tr><td><p>&#34;PublicCloud&#34;</p></td>
  2246. <td></td>
  2247. </tr><tr><td><p>&#34;USGovernmentCloud&#34;</p></td>
  2248. <td></td>
  2249. </tr></tbody>
  2250. </table>
  2251. <h3 id="external-secrets.io/v1.AzureKVAuth">AzureKVAuth
  2252. </h3>
  2253. <p>
  2254. (<em>Appears on:</em>
  2255. <a href="#external-secrets.io/v1.AzureKVProvider">AzureKVProvider</a>)
  2256. </p>
  2257. <p>
  2258. <p>Configuration used to authenticate with Azure.</p>
  2259. </p>
  2260. <table>
  2261. <thead>
  2262. <tr>
  2263. <th>Field</th>
  2264. <th>Description</th>
  2265. </tr>
  2266. </thead>
  2267. <tbody>
  2268. <tr>
  2269. <td>
  2270. <code>clientId</code></br>
  2271. <em>
  2272. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2273. External Secrets meta/v1.SecretKeySelector
  2274. </a>
  2275. </em>
  2276. </td>
  2277. <td>
  2278. <em>(Optional)</em>
  2279. <p>The Azure clientId of the service principle or managed identity used for authentication.</p>
  2280. </td>
  2281. </tr>
  2282. <tr>
  2283. <td>
  2284. <code>tenantId</code></br>
  2285. <em>
  2286. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2287. External Secrets meta/v1.SecretKeySelector
  2288. </a>
  2289. </em>
  2290. </td>
  2291. <td>
  2292. <em>(Optional)</em>
  2293. <p>The Azure tenantId of the managed identity used for authentication.</p>
  2294. </td>
  2295. </tr>
  2296. <tr>
  2297. <td>
  2298. <code>clientSecret</code></br>
  2299. <em>
  2300. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2301. External Secrets meta/v1.SecretKeySelector
  2302. </a>
  2303. </em>
  2304. </td>
  2305. <td>
  2306. <em>(Optional)</em>
  2307. <p>The Azure ClientSecret of the service principle used for authentication.</p>
  2308. </td>
  2309. </tr>
  2310. <tr>
  2311. <td>
  2312. <code>clientCertificate</code></br>
  2313. <em>
  2314. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2315. External Secrets meta/v1.SecretKeySelector
  2316. </a>
  2317. </em>
  2318. </td>
  2319. <td>
  2320. <em>(Optional)</em>
  2321. <p>The Azure ClientCertificate of the service principle used for authentication.</p>
  2322. </td>
  2323. </tr>
  2324. </tbody>
  2325. </table>
  2326. <h3 id="external-secrets.io/v1.AzureKVProvider">AzureKVProvider
  2327. </h3>
  2328. <p>
  2329. (<em>Appears on:</em>
  2330. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2331. </p>
  2332. <p>
  2333. <p>Configures an store to sync secrets using Azure KV.</p>
  2334. </p>
  2335. <table>
  2336. <thead>
  2337. <tr>
  2338. <th>Field</th>
  2339. <th>Description</th>
  2340. </tr>
  2341. </thead>
  2342. <tbody>
  2343. <tr>
  2344. <td>
  2345. <code>authType</code></br>
  2346. <em>
  2347. <a href="#external-secrets.io/v1.AzureAuthType">
  2348. AzureAuthType
  2349. </a>
  2350. </em>
  2351. </td>
  2352. <td>
  2353. <em>(Optional)</em>
  2354. <p>Auth type defines how to authenticate to the keyvault service.
  2355. Valid values are:
  2356. - &ldquo;ServicePrincipal&rdquo; (default): Using a service principal (tenantId, clientId, clientSecret)
  2357. - &ldquo;ManagedIdentity&rdquo;: Using Managed Identity assigned to the pod (see aad-pod-identity)</p>
  2358. </td>
  2359. </tr>
  2360. <tr>
  2361. <td>
  2362. <code>vaultUrl</code></br>
  2363. <em>
  2364. string
  2365. </em>
  2366. </td>
  2367. <td>
  2368. <p>Vault Url from which the secrets to be fetched from.</p>
  2369. </td>
  2370. </tr>
  2371. <tr>
  2372. <td>
  2373. <code>tenantId</code></br>
  2374. <em>
  2375. string
  2376. </em>
  2377. </td>
  2378. <td>
  2379. <em>(Optional)</em>
  2380. <p>TenantID configures the Azure Tenant to send requests to. Required for ServicePrincipal auth type. Optional for WorkloadIdentity.</p>
  2381. </td>
  2382. </tr>
  2383. <tr>
  2384. <td>
  2385. <code>environmentType</code></br>
  2386. <em>
  2387. <a href="#external-secrets.io/v1.AzureEnvironmentType">
  2388. AzureEnvironmentType
  2389. </a>
  2390. </em>
  2391. </td>
  2392. <td>
  2393. <p>EnvironmentType specifies the Azure cloud environment endpoints to use for
  2394. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  2395. The following endpoints are available, also see here: <a href="https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152">https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152</a>
  2396. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud, AzureStackCloud
  2397. Use AzureStackCloud when you need to configure custom Azure Stack Hub or Azure Stack Edge endpoints.</p>
  2398. </td>
  2399. </tr>
  2400. <tr>
  2401. <td>
  2402. <code>authSecretRef</code></br>
  2403. <em>
  2404. <a href="#external-secrets.io/v1.AzureKVAuth">
  2405. AzureKVAuth
  2406. </a>
  2407. </em>
  2408. </td>
  2409. <td>
  2410. <em>(Optional)</em>
  2411. <p>Auth configures how the operator authenticates with Azure. Required for ServicePrincipal auth type. Optional for WorkloadIdentity.</p>
  2412. </td>
  2413. </tr>
  2414. <tr>
  2415. <td>
  2416. <code>serviceAccountRef</code></br>
  2417. <em>
  2418. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  2419. External Secrets meta/v1.ServiceAccountSelector
  2420. </a>
  2421. </em>
  2422. </td>
  2423. <td>
  2424. <em>(Optional)</em>
  2425. <p>ServiceAccountRef specified the service account
  2426. that should be used when authenticating with WorkloadIdentity.</p>
  2427. </td>
  2428. </tr>
  2429. <tr>
  2430. <td>
  2431. <code>identityId</code></br>
  2432. <em>
  2433. string
  2434. </em>
  2435. </td>
  2436. <td>
  2437. <em>(Optional)</em>
  2438. <p>If multiple Managed Identity is assigned to the pod, you can select the one to be used</p>
  2439. </td>
  2440. </tr>
  2441. <tr>
  2442. <td>
  2443. <code>useAzureSDK</code></br>
  2444. <em>
  2445. bool
  2446. </em>
  2447. </td>
  2448. <td>
  2449. <em>(Optional)</em>
  2450. <p>UseAzureSDK enables the use of the new Azure SDK for Go (azcore-based) instead of the legacy go-autorest SDK.
  2451. This is experimental and may have behavioral differences. Defaults to false (legacy SDK).</p>
  2452. </td>
  2453. </tr>
  2454. <tr>
  2455. <td>
  2456. <code>customCloudConfig</code></br>
  2457. <em>
  2458. <a href="#external-secrets.io/v1.AzureCustomCloudConfig">
  2459. AzureCustomCloudConfig
  2460. </a>
  2461. </em>
  2462. </td>
  2463. <td>
  2464. <em>(Optional)</em>
  2465. <p>CustomCloudConfig defines custom Azure Stack Hub or Azure Stack Edge endpoints.
  2466. Required when EnvironmentType is AzureStackCloud.
  2467. IMPORTANT: This feature REQUIRES UseAzureSDK to be set to true. Custom cloud
  2468. configuration is not supported with the legacy go-autorest SDK.</p>
  2469. </td>
  2470. </tr>
  2471. </tbody>
  2472. </table>
  2473. <h3 id="external-secrets.io/v1.BeyondTrustProviderSecretRef">BeyondTrustProviderSecretRef
  2474. </h3>
  2475. <p>
  2476. (<em>Appears on:</em>
  2477. <a href="#external-secrets.io/v1.BeyondtrustAuth">BeyondtrustAuth</a>)
  2478. </p>
  2479. <p>
  2480. </p>
  2481. <table>
  2482. <thead>
  2483. <tr>
  2484. <th>Field</th>
  2485. <th>Description</th>
  2486. </tr>
  2487. </thead>
  2488. <tbody>
  2489. <tr>
  2490. <td>
  2491. <code>value</code></br>
  2492. <em>
  2493. string
  2494. </em>
  2495. </td>
  2496. <td>
  2497. <em>(Optional)</em>
  2498. <p>Value can be specified directly to set a value without using a secret.</p>
  2499. </td>
  2500. </tr>
  2501. <tr>
  2502. <td>
  2503. <code>secretRef</code></br>
  2504. <em>
  2505. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2506. External Secrets meta/v1.SecretKeySelector
  2507. </a>
  2508. </em>
  2509. </td>
  2510. <td>
  2511. <em>(Optional)</em>
  2512. <p>SecretRef references a key in a secret that will be used as value.</p>
  2513. </td>
  2514. </tr>
  2515. </tbody>
  2516. </table>
  2517. <h3 id="external-secrets.io/v1.BeyondtrustAuth">BeyondtrustAuth
  2518. </h3>
  2519. <p>
  2520. (<em>Appears on:</em>
  2521. <a href="#external-secrets.io/v1.BeyondtrustProvider">BeyondtrustProvider</a>)
  2522. </p>
  2523. <p>
  2524. <p>Configures a store to sync secrets using BeyondTrust Password Safe.</p>
  2525. </p>
  2526. <table>
  2527. <thead>
  2528. <tr>
  2529. <th>Field</th>
  2530. <th>Description</th>
  2531. </tr>
  2532. </thead>
  2533. <tbody>
  2534. <tr>
  2535. <td>
  2536. <code>apiKey</code></br>
  2537. <em>
  2538. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2539. BeyondTrustProviderSecretRef
  2540. </a>
  2541. </em>
  2542. </td>
  2543. <td>
  2544. <p>APIKey If not provided then ClientID/ClientSecret become required.</p>
  2545. </td>
  2546. </tr>
  2547. <tr>
  2548. <td>
  2549. <code>clientId</code></br>
  2550. <em>
  2551. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2552. BeyondTrustProviderSecretRef
  2553. </a>
  2554. </em>
  2555. </td>
  2556. <td>
  2557. <p>ClientID is the API OAuth Client ID.</p>
  2558. </td>
  2559. </tr>
  2560. <tr>
  2561. <td>
  2562. <code>clientSecret</code></br>
  2563. <em>
  2564. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2565. BeyondTrustProviderSecretRef
  2566. </a>
  2567. </em>
  2568. </td>
  2569. <td>
  2570. <p>ClientSecret is the API OAuth Client Secret.</p>
  2571. </td>
  2572. </tr>
  2573. <tr>
  2574. <td>
  2575. <code>certificate</code></br>
  2576. <em>
  2577. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2578. BeyondTrustProviderSecretRef
  2579. </a>
  2580. </em>
  2581. </td>
  2582. <td>
  2583. <p>Certificate (cert.pem) for use when authenticating with an OAuth client Id using a Client Certificate.</p>
  2584. </td>
  2585. </tr>
  2586. <tr>
  2587. <td>
  2588. <code>certificateKey</code></br>
  2589. <em>
  2590. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2591. BeyondTrustProviderSecretRef
  2592. </a>
  2593. </em>
  2594. </td>
  2595. <td>
  2596. <p>Certificate private key (key.pem). For use when authenticating with an OAuth client Id</p>
  2597. </td>
  2598. </tr>
  2599. </tbody>
  2600. </table>
  2601. <h3 id="external-secrets.io/v1.BeyondtrustProvider">BeyondtrustProvider
  2602. </h3>
  2603. <p>
  2604. (<em>Appears on:</em>
  2605. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2606. </p>
  2607. <p>
  2608. </p>
  2609. <table>
  2610. <thead>
  2611. <tr>
  2612. <th>Field</th>
  2613. <th>Description</th>
  2614. </tr>
  2615. </thead>
  2616. <tbody>
  2617. <tr>
  2618. <td>
  2619. <code>auth</code></br>
  2620. <em>
  2621. <a href="#external-secrets.io/v1.BeyondtrustAuth">
  2622. BeyondtrustAuth
  2623. </a>
  2624. </em>
  2625. </td>
  2626. <td>
  2627. <p>Auth configures how the operator authenticates with Beyondtrust.</p>
  2628. </td>
  2629. </tr>
  2630. <tr>
  2631. <td>
  2632. <code>server</code></br>
  2633. <em>
  2634. <a href="#external-secrets.io/v1.BeyondtrustServer">
  2635. BeyondtrustServer
  2636. </a>
  2637. </em>
  2638. </td>
  2639. <td>
  2640. <p>Auth configures how API server works.</p>
  2641. </td>
  2642. </tr>
  2643. </tbody>
  2644. </table>
  2645. <h3 id="external-secrets.io/v1.BeyondtrustServer">BeyondtrustServer
  2646. </h3>
  2647. <p>
  2648. (<em>Appears on:</em>
  2649. <a href="#external-secrets.io/v1.BeyondtrustProvider">BeyondtrustProvider</a>)
  2650. </p>
  2651. <p>
  2652. <p>Configures a store to sync secrets using BeyondTrust Password Safe.</p>
  2653. </p>
  2654. <table>
  2655. <thead>
  2656. <tr>
  2657. <th>Field</th>
  2658. <th>Description</th>
  2659. </tr>
  2660. </thead>
  2661. <tbody>
  2662. <tr>
  2663. <td>
  2664. <code>apiUrl</code></br>
  2665. <em>
  2666. string
  2667. </em>
  2668. </td>
  2669. <td>
  2670. </td>
  2671. </tr>
  2672. <tr>
  2673. <td>
  2674. <code>apiVersion</code></br>
  2675. <em>
  2676. string
  2677. </em>
  2678. </td>
  2679. <td>
  2680. </td>
  2681. </tr>
  2682. <tr>
  2683. <td>
  2684. <code>retrievalType</code></br>
  2685. <em>
  2686. string
  2687. </em>
  2688. </td>
  2689. <td>
  2690. <p>The secret retrieval type. SECRET = Secrets Safe (credential, text, file). MANAGED_ACCOUNT = Password Safe account associated with a system.</p>
  2691. </td>
  2692. </tr>
  2693. <tr>
  2694. <td>
  2695. <code>separator</code></br>
  2696. <em>
  2697. string
  2698. </em>
  2699. </td>
  2700. <td>
  2701. <p>A character that separates the folder names.</p>
  2702. </td>
  2703. </tr>
  2704. <tr>
  2705. <td>
  2706. <code>verifyCA</code></br>
  2707. <em>
  2708. bool
  2709. </em>
  2710. </td>
  2711. <td>
  2712. </td>
  2713. </tr>
  2714. <tr>
  2715. <td>
  2716. <code>clientTimeOutSeconds</code></br>
  2717. <em>
  2718. int
  2719. </em>
  2720. </td>
  2721. <td>
  2722. <p>Timeout specifies a time limit for requests made by this Client. The timeout includes connection time, any redirects, and reading the response body. Defaults to 45 seconds.</p>
  2723. </td>
  2724. </tr>
  2725. </tbody>
  2726. </table>
  2727. <h3 id="external-secrets.io/v1.BitwardenSecretsManagerAuth">BitwardenSecretsManagerAuth
  2728. </h3>
  2729. <p>
  2730. (<em>Appears on:</em>
  2731. <a href="#external-secrets.io/v1.BitwardenSecretsManagerProvider">BitwardenSecretsManagerProvider</a>)
  2732. </p>
  2733. <p>
  2734. <p>BitwardenSecretsManagerAuth contains the ref to the secret that contains the machine account token.</p>
  2735. </p>
  2736. <table>
  2737. <thead>
  2738. <tr>
  2739. <th>Field</th>
  2740. <th>Description</th>
  2741. </tr>
  2742. </thead>
  2743. <tbody>
  2744. <tr>
  2745. <td>
  2746. <code>secretRef</code></br>
  2747. <em>
  2748. <a href="#external-secrets.io/v1.BitwardenSecretsManagerSecretRef">
  2749. BitwardenSecretsManagerSecretRef
  2750. </a>
  2751. </em>
  2752. </td>
  2753. <td>
  2754. </td>
  2755. </tr>
  2756. </tbody>
  2757. </table>
  2758. <h3 id="external-secrets.io/v1.BitwardenSecretsManagerProvider">BitwardenSecretsManagerProvider
  2759. </h3>
  2760. <p>
  2761. (<em>Appears on:</em>
  2762. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2763. </p>
  2764. <p>
  2765. <p>BitwardenSecretsManagerProvider configures a store to sync secrets with a Bitwarden Secrets Manager instance.</p>
  2766. </p>
  2767. <table>
  2768. <thead>
  2769. <tr>
  2770. <th>Field</th>
  2771. <th>Description</th>
  2772. </tr>
  2773. </thead>
  2774. <tbody>
  2775. <tr>
  2776. <td>
  2777. <code>apiURL</code></br>
  2778. <em>
  2779. string
  2780. </em>
  2781. </td>
  2782. <td>
  2783. </td>
  2784. </tr>
  2785. <tr>
  2786. <td>
  2787. <code>identityURL</code></br>
  2788. <em>
  2789. string
  2790. </em>
  2791. </td>
  2792. <td>
  2793. </td>
  2794. </tr>
  2795. <tr>
  2796. <td>
  2797. <code>bitwardenServerSDKURL</code></br>
  2798. <em>
  2799. string
  2800. </em>
  2801. </td>
  2802. <td>
  2803. </td>
  2804. </tr>
  2805. <tr>
  2806. <td>
  2807. <code>caBundle</code></br>
  2808. <em>
  2809. string
  2810. </em>
  2811. </td>
  2812. <td>
  2813. <em>(Optional)</em>
  2814. <p>Base64 encoded certificate for the bitwarden server sdk. The sdk MUST run with HTTPS to make sure no MITM attack
  2815. can be performed.</p>
  2816. </td>
  2817. </tr>
  2818. <tr>
  2819. <td>
  2820. <code>caProvider</code></br>
  2821. <em>
  2822. <a href="#external-secrets.io/v1.CAProvider">
  2823. CAProvider
  2824. </a>
  2825. </em>
  2826. </td>
  2827. <td>
  2828. <em>(Optional)</em>
  2829. <p>see: <a href="https://external-secrets.io/latest/spec/#external-secrets.io/v1alpha1.CAProvider">https://external-secrets.io/latest/spec/#external-secrets.io/v1alpha1.CAProvider</a></p>
  2830. </td>
  2831. </tr>
  2832. <tr>
  2833. <td>
  2834. <code>organizationID</code></br>
  2835. <em>
  2836. string
  2837. </em>
  2838. </td>
  2839. <td>
  2840. <p>OrganizationID determines which organization this secret store manages.</p>
  2841. </td>
  2842. </tr>
  2843. <tr>
  2844. <td>
  2845. <code>projectID</code></br>
  2846. <em>
  2847. string
  2848. </em>
  2849. </td>
  2850. <td>
  2851. <p>ProjectID determines which project this secret store manages.</p>
  2852. </td>
  2853. </tr>
  2854. <tr>
  2855. <td>
  2856. <code>auth</code></br>
  2857. <em>
  2858. <a href="#external-secrets.io/v1.BitwardenSecretsManagerAuth">
  2859. BitwardenSecretsManagerAuth
  2860. </a>
  2861. </em>
  2862. </td>
  2863. <td>
  2864. <p>Auth configures how secret-manager authenticates with a bitwarden machine account instance.
  2865. Make sure that the token being used has permissions on the given secret.</p>
  2866. </td>
  2867. </tr>
  2868. </tbody>
  2869. </table>
  2870. <h3 id="external-secrets.io/v1.BitwardenSecretsManagerSecretRef">BitwardenSecretsManagerSecretRef
  2871. </h3>
  2872. <p>
  2873. (<em>Appears on:</em>
  2874. <a href="#external-secrets.io/v1.BitwardenSecretsManagerAuth">BitwardenSecretsManagerAuth</a>)
  2875. </p>
  2876. <p>
  2877. <p>BitwardenSecretsManagerSecretRef contains the credential ref to the bitwarden instance.</p>
  2878. </p>
  2879. <table>
  2880. <thead>
  2881. <tr>
  2882. <th>Field</th>
  2883. <th>Description</th>
  2884. </tr>
  2885. </thead>
  2886. <tbody>
  2887. <tr>
  2888. <td>
  2889. <code>credentials</code></br>
  2890. <em>
  2891. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2892. External Secrets meta/v1.SecretKeySelector
  2893. </a>
  2894. </em>
  2895. </td>
  2896. <td>
  2897. <p>AccessToken used for the bitwarden instance.</p>
  2898. </td>
  2899. </tr>
  2900. </tbody>
  2901. </table>
  2902. <h3 id="external-secrets.io/v1.ByID">ByID
  2903. </h3>
  2904. <p>
  2905. (<em>Appears on:</em>
  2906. <a href="#external-secrets.io/v1.FetchingPolicy">FetchingPolicy</a>)
  2907. </p>
  2908. <p>
  2909. <p>ByID configures the provider to interpret the <code>data.secretKey.remoteRef.key</code> field in ExternalSecret as secret ID.</p>
  2910. </p>
  2911. <h3 id="external-secrets.io/v1.ByName">ByName
  2912. </h3>
  2913. <p>
  2914. (<em>Appears on:</em>
  2915. <a href="#external-secrets.io/v1.FetchingPolicy">FetchingPolicy</a>)
  2916. </p>
  2917. <p>
  2918. <p>ByName configures the provider to interpret the <code>data.secretKey.remoteRef.key</code> field in ExternalSecret as secret name.</p>
  2919. </p>
  2920. <table>
  2921. <thead>
  2922. <tr>
  2923. <th>Field</th>
  2924. <th>Description</th>
  2925. </tr>
  2926. </thead>
  2927. <tbody>
  2928. <tr>
  2929. <td>
  2930. <code>folderID</code></br>
  2931. <em>
  2932. string
  2933. </em>
  2934. </td>
  2935. <td>
  2936. <p>The folder to fetch secrets from</p>
  2937. </td>
  2938. </tr>
  2939. </tbody>
  2940. </table>
  2941. <h3 id="external-secrets.io/v1.CAProvider">CAProvider
  2942. </h3>
  2943. <p>
  2944. (<em>Appears on:</em>
  2945. <a href="#external-secrets.io/v1.AkeylessProvider">AkeylessProvider</a>,
  2946. <a href="#external-secrets.io/v1.BitwardenSecretsManagerProvider">BitwardenSecretsManagerProvider</a>,
  2947. <a href="#external-secrets.io/v1.ConjurProvider">ConjurProvider</a>,
  2948. <a href="#external-secrets.io/v1.GitlabProvider">GitlabProvider</a>,
  2949. <a href="#external-secrets.io/v1.KubernetesServer">KubernetesServer</a>,
  2950. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  2951. </p>
  2952. <p>
  2953. <p>Used to provide custom certificate authority (CA) certificates
  2954. for a secret store. The CAProvider points to a Secret or ConfigMap resource
  2955. that contains a PEM-encoded certificate.</p>
  2956. </p>
  2957. <table>
  2958. <thead>
  2959. <tr>
  2960. <th>Field</th>
  2961. <th>Description</th>
  2962. </tr>
  2963. </thead>
  2964. <tbody>
  2965. <tr>
  2966. <td>
  2967. <code>type</code></br>
  2968. <em>
  2969. <a href="#external-secrets.io/v1.CAProviderType">
  2970. CAProviderType
  2971. </a>
  2972. </em>
  2973. </td>
  2974. <td>
  2975. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  2976. </td>
  2977. </tr>
  2978. <tr>
  2979. <td>
  2980. <code>name</code></br>
  2981. <em>
  2982. string
  2983. </em>
  2984. </td>
  2985. <td>
  2986. <p>The name of the object located at the provider type.</p>
  2987. </td>
  2988. </tr>
  2989. <tr>
  2990. <td>
  2991. <code>key</code></br>
  2992. <em>
  2993. string
  2994. </em>
  2995. </td>
  2996. <td>
  2997. <p>The key where the CA certificate can be found in the Secret or ConfigMap.</p>
  2998. </td>
  2999. </tr>
  3000. <tr>
  3001. <td>
  3002. <code>namespace</code></br>
  3003. <em>
  3004. string
  3005. </em>
  3006. </td>
  3007. <td>
  3008. <em>(Optional)</em>
  3009. <p>The namespace the Provider type is in.
  3010. Can only be defined when used in a ClusterSecretStore.</p>
  3011. </td>
  3012. </tr>
  3013. </tbody>
  3014. </table>
  3015. <h3 id="external-secrets.io/v1.CAProviderType">CAProviderType
  3016. (<code>string</code> alias)</p></h3>
  3017. <p>
  3018. (<em>Appears on:</em>
  3019. <a href="#external-secrets.io/v1.CAProvider">CAProvider</a>)
  3020. </p>
  3021. <p>
  3022. </p>
  3023. <table>
  3024. <thead>
  3025. <tr>
  3026. <th>Value</th>
  3027. <th>Description</th>
  3028. </tr>
  3029. </thead>
  3030. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  3031. <td></td>
  3032. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  3033. <td></td>
  3034. </tr></tbody>
  3035. </table>
  3036. <h3 id="external-secrets.io/v1.CSMAuth">CSMAuth
  3037. </h3>
  3038. <p>
  3039. (<em>Appears on:</em>
  3040. <a href="#external-secrets.io/v1.CloudruSMProvider">CloudruSMProvider</a>)
  3041. </p>
  3042. <p>
  3043. <p>CSMAuth contains a secretRef for credentials.</p>
  3044. </p>
  3045. <table>
  3046. <thead>
  3047. <tr>
  3048. <th>Field</th>
  3049. <th>Description</th>
  3050. </tr>
  3051. </thead>
  3052. <tbody>
  3053. <tr>
  3054. <td>
  3055. <code>secretRef</code></br>
  3056. <em>
  3057. <a href="#external-secrets.io/v1.CSMAuthSecretRef">
  3058. CSMAuthSecretRef
  3059. </a>
  3060. </em>
  3061. </td>
  3062. <td>
  3063. <em>(Optional)</em>
  3064. </td>
  3065. </tr>
  3066. </tbody>
  3067. </table>
  3068. <h3 id="external-secrets.io/v1.CSMAuthSecretRef">CSMAuthSecretRef
  3069. </h3>
  3070. <p>
  3071. (<em>Appears on:</em>
  3072. <a href="#external-secrets.io/v1.CSMAuth">CSMAuth</a>)
  3073. </p>
  3074. <p>
  3075. <p>CSMAuthSecretRef holds secret references for Cloud.ru credentials.</p>
  3076. </p>
  3077. <table>
  3078. <thead>
  3079. <tr>
  3080. <th>Field</th>
  3081. <th>Description</th>
  3082. </tr>
  3083. </thead>
  3084. <tbody>
  3085. <tr>
  3086. <td>
  3087. <code>accessKeyIDSecretRef</code></br>
  3088. <em>
  3089. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3090. External Secrets meta/v1.SecretKeySelector
  3091. </a>
  3092. </em>
  3093. </td>
  3094. <td>
  3095. <p>The AccessKeyID is used for authentication</p>
  3096. </td>
  3097. </tr>
  3098. <tr>
  3099. <td>
  3100. <code>accessKeySecretSecretRef</code></br>
  3101. <em>
  3102. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3103. External Secrets meta/v1.SecretKeySelector
  3104. </a>
  3105. </em>
  3106. </td>
  3107. <td>
  3108. <p>The AccessKeySecret is used for authentication</p>
  3109. </td>
  3110. </tr>
  3111. </tbody>
  3112. </table>
  3113. <h3 id="external-secrets.io/v1.CertAuth">CertAuth
  3114. </h3>
  3115. <p>
  3116. (<em>Appears on:</em>
  3117. <a href="#external-secrets.io/v1.KubernetesAuth">KubernetesAuth</a>)
  3118. </p>
  3119. <p>
  3120. </p>
  3121. <table>
  3122. <thead>
  3123. <tr>
  3124. <th>Field</th>
  3125. <th>Description</th>
  3126. </tr>
  3127. </thead>
  3128. <tbody>
  3129. <tr>
  3130. <td>
  3131. <code>clientCert</code></br>
  3132. <em>
  3133. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3134. External Secrets meta/v1.SecretKeySelector
  3135. </a>
  3136. </em>
  3137. </td>
  3138. <td>
  3139. </td>
  3140. </tr>
  3141. <tr>
  3142. <td>
  3143. <code>clientKey</code></br>
  3144. <em>
  3145. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3146. External Secrets meta/v1.SecretKeySelector
  3147. </a>
  3148. </em>
  3149. </td>
  3150. <td>
  3151. </td>
  3152. </tr>
  3153. </tbody>
  3154. </table>
  3155. <h3 id="external-secrets.io/v1.ChefAuth">ChefAuth
  3156. </h3>
  3157. <p>
  3158. (<em>Appears on:</em>
  3159. <a href="#external-secrets.io/v1.ChefProvider">ChefProvider</a>)
  3160. </p>
  3161. <p>
  3162. <p>ChefAuth contains a secretRef for credentials.</p>
  3163. </p>
  3164. <table>
  3165. <thead>
  3166. <tr>
  3167. <th>Field</th>
  3168. <th>Description</th>
  3169. </tr>
  3170. </thead>
  3171. <tbody>
  3172. <tr>
  3173. <td>
  3174. <code>secretRef</code></br>
  3175. <em>
  3176. <a href="#external-secrets.io/v1.ChefAuthSecretRef">
  3177. ChefAuthSecretRef
  3178. </a>
  3179. </em>
  3180. </td>
  3181. <td>
  3182. </td>
  3183. </tr>
  3184. </tbody>
  3185. </table>
  3186. <h3 id="external-secrets.io/v1.ChefAuthSecretRef">ChefAuthSecretRef
  3187. </h3>
  3188. <p>
  3189. (<em>Appears on:</em>
  3190. <a href="#external-secrets.io/v1.ChefAuth">ChefAuth</a>)
  3191. </p>
  3192. <p>
  3193. <p>ChefAuthSecretRef holds secret references for chef server login credentials.</p>
  3194. </p>
  3195. <table>
  3196. <thead>
  3197. <tr>
  3198. <th>Field</th>
  3199. <th>Description</th>
  3200. </tr>
  3201. </thead>
  3202. <tbody>
  3203. <tr>
  3204. <td>
  3205. <code>privateKeySecretRef</code></br>
  3206. <em>
  3207. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3208. External Secrets meta/v1.SecretKeySelector
  3209. </a>
  3210. </em>
  3211. </td>
  3212. <td>
  3213. <p>SecretKey is the Signing Key in PEM format, used for authentication.</p>
  3214. </td>
  3215. </tr>
  3216. </tbody>
  3217. </table>
  3218. <h3 id="external-secrets.io/v1.ChefProvider">ChefProvider
  3219. </h3>
  3220. <p>
  3221. (<em>Appears on:</em>
  3222. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  3223. </p>
  3224. <p>
  3225. <p>ChefProvider configures a store to sync secrets using basic chef server connection credentials.</p>
  3226. </p>
  3227. <table>
  3228. <thead>
  3229. <tr>
  3230. <th>Field</th>
  3231. <th>Description</th>
  3232. </tr>
  3233. </thead>
  3234. <tbody>
  3235. <tr>
  3236. <td>
  3237. <code>auth</code></br>
  3238. <em>
  3239. <a href="#external-secrets.io/v1.ChefAuth">
  3240. ChefAuth
  3241. </a>
  3242. </em>
  3243. </td>
  3244. <td>
  3245. <p>Auth defines the information necessary to authenticate against chef Server</p>
  3246. </td>
  3247. </tr>
  3248. <tr>
  3249. <td>
  3250. <code>username</code></br>
  3251. <em>
  3252. string
  3253. </em>
  3254. </td>
  3255. <td>
  3256. <p>UserName should be the user ID on the chef server</p>
  3257. </td>
  3258. </tr>
  3259. <tr>
  3260. <td>
  3261. <code>serverUrl</code></br>
  3262. <em>
  3263. string
  3264. </em>
  3265. </td>
  3266. <td>
  3267. <p>ServerURL is the chef server URL used to connect to. If using orgs you should include your org in the url and terminate the url with a &ldquo;/&rdquo;</p>
  3268. </td>
  3269. </tr>
  3270. </tbody>
  3271. </table>
  3272. <h3 id="external-secrets.io/v1.CloudruSMProvider">CloudruSMProvider
  3273. </h3>
  3274. <p>
  3275. (<em>Appears on:</em>
  3276. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  3277. </p>
  3278. <p>
  3279. <p>CloudruSMProvider configures a store to sync secrets using the Cloud.ru Secret Manager provider.</p>
  3280. </p>
  3281. <table>
  3282. <thead>
  3283. <tr>
  3284. <th>Field</th>
  3285. <th>Description</th>
  3286. </tr>
  3287. </thead>
  3288. <tbody>
  3289. <tr>
  3290. <td>
  3291. <code>auth</code></br>
  3292. <em>
  3293. <a href="#external-secrets.io/v1.CSMAuth">
  3294. CSMAuth
  3295. </a>
  3296. </em>
  3297. </td>
  3298. <td>
  3299. </td>
  3300. </tr>
  3301. <tr>
  3302. <td>
  3303. <code>projectID</code></br>
  3304. <em>
  3305. string
  3306. </em>
  3307. </td>
  3308. <td>
  3309. <p>ProjectID is the project, which the secrets are stored in.</p>
  3310. </td>
  3311. </tr>
  3312. </tbody>
  3313. </table>
  3314. <h3 id="external-secrets.io/v1.ClusterExternalSecret">ClusterExternalSecret
  3315. </h3>
  3316. <p>
  3317. <p>ClusterExternalSecret is the Schema for the clusterexternalsecrets API.</p>
  3318. </p>
  3319. <table>
  3320. <thead>
  3321. <tr>
  3322. <th>Field</th>
  3323. <th>Description</th>
  3324. </tr>
  3325. </thead>
  3326. <tbody>
  3327. <tr>
  3328. <td>
  3329. <code>metadata</code></br>
  3330. <em>
  3331. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  3332. Kubernetes meta/v1.ObjectMeta
  3333. </a>
  3334. </em>
  3335. </td>
  3336. <td>
  3337. Refer to the Kubernetes API documentation for the fields of the
  3338. <code>metadata</code> field.
  3339. </td>
  3340. </tr>
  3341. <tr>
  3342. <td>
  3343. <code>spec</code></br>
  3344. <em>
  3345. <a href="#external-secrets.io/v1.ClusterExternalSecretSpec">
  3346. ClusterExternalSecretSpec
  3347. </a>
  3348. </em>
  3349. </td>
  3350. <td>
  3351. <br/>
  3352. <br/>
  3353. <table>
  3354. <tr>
  3355. <td>
  3356. <code>externalSecretSpec</code></br>
  3357. <em>
  3358. <a href="#external-secrets.io/v1.ExternalSecretSpec">
  3359. ExternalSecretSpec
  3360. </a>
  3361. </em>
  3362. </td>
  3363. <td>
  3364. <p>The spec for the ExternalSecrets to be created</p>
  3365. </td>
  3366. </tr>
  3367. <tr>
  3368. <td>
  3369. <code>externalSecretName</code></br>
  3370. <em>
  3371. string
  3372. </em>
  3373. </td>
  3374. <td>
  3375. <em>(Optional)</em>
  3376. <p>The name of the external secrets to be created.
  3377. Defaults to the name of the ClusterExternalSecret</p>
  3378. </td>
  3379. </tr>
  3380. <tr>
  3381. <td>
  3382. <code>externalSecretMetadata</code></br>
  3383. <em>
  3384. <a href="#external-secrets.io/v1.ExternalSecretMetadata">
  3385. ExternalSecretMetadata
  3386. </a>
  3387. </em>
  3388. </td>
  3389. <td>
  3390. <em>(Optional)</em>
  3391. <p>The metadata of the external secrets to be created</p>
  3392. </td>
  3393. </tr>
  3394. <tr>
  3395. <td>
  3396. <code>namespaceSelector</code></br>
  3397. <em>
  3398. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  3399. Kubernetes meta/v1.LabelSelector
  3400. </a>
  3401. </em>
  3402. </td>
  3403. <td>
  3404. <em>(Optional)</em>
  3405. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.
  3406. Deprecated: Use NamespaceSelectors instead.</p>
  3407. </td>
  3408. </tr>
  3409. <tr>
  3410. <td>
  3411. <code>namespaceSelectors</code></br>
  3412. <em>
  3413. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#*k8s.io/apimachinery/pkg/apis/meta/v1.labelselector--">
  3414. []*k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector
  3415. </a>
  3416. </em>
  3417. </td>
  3418. <td>
  3419. <em>(Optional)</em>
  3420. <p>A list of labels to select by to find the Namespaces to create the ExternalSecrets in. The selectors are ORed.</p>
  3421. </td>
  3422. </tr>
  3423. <tr>
  3424. <td>
  3425. <code>namespaces</code></br>
  3426. <em>
  3427. []string
  3428. </em>
  3429. </td>
  3430. <td>
  3431. <em>(Optional)</em>
  3432. <p>Choose namespaces by name. This field is ORed with anything that NamespaceSelectors ends up choosing.
  3433. Deprecated: Use NamespaceSelectors instead.</p>
  3434. </td>
  3435. </tr>
  3436. <tr>
  3437. <td>
  3438. <code>refreshTime</code></br>
  3439. <em>
  3440. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  3441. Kubernetes meta/v1.Duration
  3442. </a>
  3443. </em>
  3444. </td>
  3445. <td>
  3446. <p>The time in which the controller should reconcile its objects and recheck namespaces for labels.</p>
  3447. </td>
  3448. </tr>
  3449. </table>
  3450. </td>
  3451. </tr>
  3452. <tr>
  3453. <td>
  3454. <code>status</code></br>
  3455. <em>
  3456. <a href="#external-secrets.io/v1.ClusterExternalSecretStatus">
  3457. ClusterExternalSecretStatus
  3458. </a>
  3459. </em>
  3460. </td>
  3461. <td>
  3462. </td>
  3463. </tr>
  3464. </tbody>
  3465. </table>
  3466. <h3 id="external-secrets.io/v1.ClusterExternalSecretConditionType">ClusterExternalSecretConditionType
  3467. (<code>string</code> alias)</p></h3>
  3468. <p>
  3469. (<em>Appears on:</em>
  3470. <a href="#external-secrets.io/v1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition</a>)
  3471. </p>
  3472. <p>
  3473. </p>
  3474. <table>
  3475. <thead>
  3476. <tr>
  3477. <th>Value</th>
  3478. <th>Description</th>
  3479. </tr>
  3480. </thead>
  3481. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  3482. <td></td>
  3483. </tr></tbody>
  3484. </table>
  3485. <h3 id="external-secrets.io/v1.ClusterExternalSecretNamespaceFailure">ClusterExternalSecretNamespaceFailure
  3486. </h3>
  3487. <p>
  3488. (<em>Appears on:</em>
  3489. <a href="#external-secrets.io/v1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  3490. </p>
  3491. <p>
  3492. <p>ClusterExternalSecretNamespaceFailure represents a failed namespace deployment and it&rsquo;s reason.</p>
  3493. </p>
  3494. <table>
  3495. <thead>
  3496. <tr>
  3497. <th>Field</th>
  3498. <th>Description</th>
  3499. </tr>
  3500. </thead>
  3501. <tbody>
  3502. <tr>
  3503. <td>
  3504. <code>namespace</code></br>
  3505. <em>
  3506. string
  3507. </em>
  3508. </td>
  3509. <td>
  3510. <p>Namespace is the namespace that failed when trying to apply an ExternalSecret</p>
  3511. </td>
  3512. </tr>
  3513. <tr>
  3514. <td>
  3515. <code>reason</code></br>
  3516. <em>
  3517. string
  3518. </em>
  3519. </td>
  3520. <td>
  3521. <em>(Optional)</em>
  3522. <p>Reason is why the ExternalSecret failed to apply to the namespace</p>
  3523. </td>
  3524. </tr>
  3525. </tbody>
  3526. </table>
  3527. <h3 id="external-secrets.io/v1.ClusterExternalSecretSpec">ClusterExternalSecretSpec
  3528. </h3>
  3529. <p>
  3530. (<em>Appears on:</em>
  3531. <a href="#external-secrets.io/v1.ClusterExternalSecret">ClusterExternalSecret</a>)
  3532. </p>
  3533. <p>
  3534. <p>ClusterExternalSecretSpec defines the desired state of ClusterExternalSecret.</p>
  3535. </p>
  3536. <table>
  3537. <thead>
  3538. <tr>
  3539. <th>Field</th>
  3540. <th>Description</th>
  3541. </tr>
  3542. </thead>
  3543. <tbody>
  3544. <tr>
  3545. <td>
  3546. <code>externalSecretSpec</code></br>
  3547. <em>
  3548. <a href="#external-secrets.io/v1.ExternalSecretSpec">
  3549. ExternalSecretSpec
  3550. </a>
  3551. </em>
  3552. </td>
  3553. <td>
  3554. <p>The spec for the ExternalSecrets to be created</p>
  3555. </td>
  3556. </tr>
  3557. <tr>
  3558. <td>
  3559. <code>externalSecretName</code></br>
  3560. <em>
  3561. string
  3562. </em>
  3563. </td>
  3564. <td>
  3565. <em>(Optional)</em>
  3566. <p>The name of the external secrets to be created.
  3567. Defaults to the name of the ClusterExternalSecret</p>
  3568. </td>
  3569. </tr>
  3570. <tr>
  3571. <td>
  3572. <code>externalSecretMetadata</code></br>
  3573. <em>
  3574. <a href="#external-secrets.io/v1.ExternalSecretMetadata">
  3575. ExternalSecretMetadata
  3576. </a>
  3577. </em>
  3578. </td>
  3579. <td>
  3580. <em>(Optional)</em>
  3581. <p>The metadata of the external secrets to be created</p>
  3582. </td>
  3583. </tr>
  3584. <tr>
  3585. <td>
  3586. <code>namespaceSelector</code></br>
  3587. <em>
  3588. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  3589. Kubernetes meta/v1.LabelSelector
  3590. </a>
  3591. </em>
  3592. </td>
  3593. <td>
  3594. <em>(Optional)</em>
  3595. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.
  3596. Deprecated: Use NamespaceSelectors instead.</p>
  3597. </td>
  3598. </tr>
  3599. <tr>
  3600. <td>
  3601. <code>namespaceSelectors</code></br>
  3602. <em>
  3603. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#*k8s.io/apimachinery/pkg/apis/meta/v1.labelselector--">
  3604. []*k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector
  3605. </a>
  3606. </em>
  3607. </td>
  3608. <td>
  3609. <em>(Optional)</em>
  3610. <p>A list of labels to select by to find the Namespaces to create the ExternalSecrets in. The selectors are ORed.</p>
  3611. </td>
  3612. </tr>
  3613. <tr>
  3614. <td>
  3615. <code>namespaces</code></br>
  3616. <em>
  3617. []string
  3618. </em>
  3619. </td>
  3620. <td>
  3621. <em>(Optional)</em>
  3622. <p>Choose namespaces by name. This field is ORed with anything that NamespaceSelectors ends up choosing.
  3623. Deprecated: Use NamespaceSelectors instead.</p>
  3624. </td>
  3625. </tr>
  3626. <tr>
  3627. <td>
  3628. <code>refreshTime</code></br>
  3629. <em>
  3630. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  3631. Kubernetes meta/v1.Duration
  3632. </a>
  3633. </em>
  3634. </td>
  3635. <td>
  3636. <p>The time in which the controller should reconcile its objects and recheck namespaces for labels.</p>
  3637. </td>
  3638. </tr>
  3639. </tbody>
  3640. </table>
  3641. <h3 id="external-secrets.io/v1.ClusterExternalSecretStatus">ClusterExternalSecretStatus
  3642. </h3>
  3643. <p>
  3644. (<em>Appears on:</em>
  3645. <a href="#external-secrets.io/v1.ClusterExternalSecret">ClusterExternalSecret</a>)
  3646. </p>
  3647. <p>
  3648. <p>ClusterExternalSecretStatus defines the observed state of ClusterExternalSecret.</p>
  3649. </p>
  3650. <table>
  3651. <thead>
  3652. <tr>
  3653. <th>Field</th>
  3654. <th>Description</th>
  3655. </tr>
  3656. </thead>
  3657. <tbody>
  3658. <tr>
  3659. <td>
  3660. <code>externalSecretName</code></br>
  3661. <em>
  3662. string
  3663. </em>
  3664. </td>
  3665. <td>
  3666. <p>ExternalSecretName is the name of the ExternalSecrets created by the ClusterExternalSecret</p>
  3667. </td>
  3668. </tr>
  3669. <tr>
  3670. <td>
  3671. <code>failedNamespaces</code></br>
  3672. <em>
  3673. <a href="#external-secrets.io/v1.ClusterExternalSecretNamespaceFailure">
  3674. []ClusterExternalSecretNamespaceFailure
  3675. </a>
  3676. </em>
  3677. </td>
  3678. <td>
  3679. <em>(Optional)</em>
  3680. <p>Failed namespaces are the namespaces that failed to apply an ExternalSecret</p>
  3681. </td>
  3682. </tr>
  3683. <tr>
  3684. <td>
  3685. <code>provisionedNamespaces</code></br>
  3686. <em>
  3687. []string
  3688. </em>
  3689. </td>
  3690. <td>
  3691. <em>(Optional)</em>
  3692. <p>ProvisionedNamespaces are the namespaces where the ClusterExternalSecret has secrets</p>
  3693. </td>
  3694. </tr>
  3695. <tr>
  3696. <td>
  3697. <code>conditions</code></br>
  3698. <em>
  3699. <a href="#external-secrets.io/v1.ClusterExternalSecretStatusCondition">
  3700. []ClusterExternalSecretStatusCondition
  3701. </a>
  3702. </em>
  3703. </td>
  3704. <td>
  3705. <em>(Optional)</em>
  3706. </td>
  3707. </tr>
  3708. </tbody>
  3709. </table>
  3710. <h3 id="external-secrets.io/v1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition
  3711. </h3>
  3712. <p>
  3713. (<em>Appears on:</em>
  3714. <a href="#external-secrets.io/v1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  3715. </p>
  3716. <p>
  3717. </p>
  3718. <table>
  3719. <thead>
  3720. <tr>
  3721. <th>Field</th>
  3722. <th>Description</th>
  3723. </tr>
  3724. </thead>
  3725. <tbody>
  3726. <tr>
  3727. <td>
  3728. <code>type</code></br>
  3729. <em>
  3730. <a href="#external-secrets.io/v1.ClusterExternalSecretConditionType">
  3731. ClusterExternalSecretConditionType
  3732. </a>
  3733. </em>
  3734. </td>
  3735. <td>
  3736. </td>
  3737. </tr>
  3738. <tr>
  3739. <td>
  3740. <code>status</code></br>
  3741. <em>
  3742. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  3743. Kubernetes core/v1.ConditionStatus
  3744. </a>
  3745. </em>
  3746. </td>
  3747. <td>
  3748. </td>
  3749. </tr>
  3750. <tr>
  3751. <td>
  3752. <code>message</code></br>
  3753. <em>
  3754. string
  3755. </em>
  3756. </td>
  3757. <td>
  3758. <em>(Optional)</em>
  3759. </td>
  3760. </tr>
  3761. </tbody>
  3762. </table>
  3763. <h3 id="external-secrets.io/v1.ClusterSecretStore">ClusterSecretStore
  3764. </h3>
  3765. <p>
  3766. <p>ClusterSecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  3767. </p>
  3768. <table>
  3769. <thead>
  3770. <tr>
  3771. <th>Field</th>
  3772. <th>Description</th>
  3773. </tr>
  3774. </thead>
  3775. <tbody>
  3776. <tr>
  3777. <td>
  3778. <code>metadata</code></br>
  3779. <em>
  3780. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  3781. Kubernetes meta/v1.ObjectMeta
  3782. </a>
  3783. </em>
  3784. </td>
  3785. <td>
  3786. Refer to the Kubernetes API documentation for the fields of the
  3787. <code>metadata</code> field.
  3788. </td>
  3789. </tr>
  3790. <tr>
  3791. <td>
  3792. <code>spec</code></br>
  3793. <em>
  3794. <a href="#external-secrets.io/v1.SecretStoreSpec">
  3795. SecretStoreSpec
  3796. </a>
  3797. </em>
  3798. </td>
  3799. <td>
  3800. <br/>
  3801. <br/>
  3802. <table>
  3803. <tr>
  3804. <td>
  3805. <code>controller</code></br>
  3806. <em>
  3807. string
  3808. </em>
  3809. </td>
  3810. <td>
  3811. <em>(Optional)</em>
  3812. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  3813. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  3814. </td>
  3815. </tr>
  3816. <tr>
  3817. <td>
  3818. <code>provider</code></br>
  3819. <em>
  3820. <a href="#external-secrets.io/v1.SecretStoreProvider">
  3821. SecretStoreProvider
  3822. </a>
  3823. </em>
  3824. </td>
  3825. <td>
  3826. <p>Used to configure the provider. Only one provider may be set</p>
  3827. </td>
  3828. </tr>
  3829. <tr>
  3830. <td>
  3831. <code>retrySettings</code></br>
  3832. <em>
  3833. <a href="#external-secrets.io/v1.SecretStoreRetrySettings">
  3834. SecretStoreRetrySettings
  3835. </a>
  3836. </em>
  3837. </td>
  3838. <td>
  3839. <em>(Optional)</em>
  3840. <p>Used to configure http retries if failed</p>
  3841. </td>
  3842. </tr>
  3843. <tr>
  3844. <td>
  3845. <code>refreshInterval</code></br>
  3846. <em>
  3847. int
  3848. </em>
  3849. </td>
  3850. <td>
  3851. <em>(Optional)</em>
  3852. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  3853. </td>
  3854. </tr>
  3855. <tr>
  3856. <td>
  3857. <code>conditions</code></br>
  3858. <em>
  3859. <a href="#external-secrets.io/v1.ClusterSecretStoreCondition">
  3860. []ClusterSecretStoreCondition
  3861. </a>
  3862. </em>
  3863. </td>
  3864. <td>
  3865. <em>(Optional)</em>
  3866. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  3867. </td>
  3868. </tr>
  3869. </table>
  3870. </td>
  3871. </tr>
  3872. <tr>
  3873. <td>
  3874. <code>status</code></br>
  3875. <em>
  3876. <a href="#external-secrets.io/v1.SecretStoreStatus">
  3877. SecretStoreStatus
  3878. </a>
  3879. </em>
  3880. </td>
  3881. <td>
  3882. </td>
  3883. </tr>
  3884. </tbody>
  3885. </table>
  3886. <h3 id="external-secrets.io/v1.ClusterSecretStoreCondition">ClusterSecretStoreCondition
  3887. </h3>
  3888. <p>
  3889. (<em>Appears on:</em>
  3890. <a href="#external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec</a>)
  3891. </p>
  3892. <p>
  3893. <p>ClusterSecretStoreCondition describes a condition by which to choose namespaces to process ExternalSecrets in
  3894. for a ClusterSecretStore instance.</p>
  3895. </p>
  3896. <table>
  3897. <thead>
  3898. <tr>
  3899. <th>Field</th>
  3900. <th>Description</th>
  3901. </tr>
  3902. </thead>
  3903. <tbody>
  3904. <tr>
  3905. <td>
  3906. <code>namespaceSelector</code></br>
  3907. <em>
  3908. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  3909. Kubernetes meta/v1.LabelSelector
  3910. </a>
  3911. </em>
  3912. </td>
  3913. <td>
  3914. <em>(Optional)</em>
  3915. <p>Choose namespace using a labelSelector</p>
  3916. </td>
  3917. </tr>
  3918. <tr>
  3919. <td>
  3920. <code>namespaces</code></br>
  3921. <em>
  3922. []string
  3923. </em>
  3924. </td>
  3925. <td>
  3926. <em>(Optional)</em>
  3927. <p>Choose namespaces by name</p>
  3928. </td>
  3929. </tr>
  3930. <tr>
  3931. <td>
  3932. <code>namespaceRegexes</code></br>
  3933. <em>
  3934. []string
  3935. </em>
  3936. </td>
  3937. <td>
  3938. <em>(Optional)</em>
  3939. <p>Choose namespaces by using regex matching</p>
  3940. </td>
  3941. </tr>
  3942. </tbody>
  3943. </table>
  3944. <h3 id="external-secrets.io/v1.ConfigMapReference">ConfigMapReference
  3945. </h3>
  3946. <p>
  3947. (<em>Appears on:</em>
  3948. <a href="#external-secrets.io/v1.GCPWorkloadIdentityFederation">GCPWorkloadIdentityFederation</a>)
  3949. </p>
  3950. <p>
  3951. <p>ConfigMapReference holds the details of a configmap.</p>
  3952. </p>
  3953. <table>
  3954. <thead>
  3955. <tr>
  3956. <th>Field</th>
  3957. <th>Description</th>
  3958. </tr>
  3959. </thead>
  3960. <tbody>
  3961. <tr>
  3962. <td>
  3963. <code>name</code></br>
  3964. <em>
  3965. string
  3966. </em>
  3967. </td>
  3968. <td>
  3969. <p>name of the configmap.</p>
  3970. </td>
  3971. </tr>
  3972. <tr>
  3973. <td>
  3974. <code>namespace</code></br>
  3975. <em>
  3976. string
  3977. </em>
  3978. </td>
  3979. <td>
  3980. <p>namespace in which the configmap exists. If empty, configmap will looked up in local namespace.</p>
  3981. </td>
  3982. </tr>
  3983. <tr>
  3984. <td>
  3985. <code>key</code></br>
  3986. <em>
  3987. string
  3988. </em>
  3989. </td>
  3990. <td>
  3991. <p>key name holding the external account credential config.</p>
  3992. </td>
  3993. </tr>
  3994. </tbody>
  3995. </table>
  3996. <h3 id="external-secrets.io/v1.ConjurAPIKey">ConjurAPIKey
  3997. </h3>
  3998. <p>
  3999. (<em>Appears on:</em>
  4000. <a href="#external-secrets.io/v1.ConjurAuth">ConjurAuth</a>)
  4001. </p>
  4002. <p>
  4003. </p>
  4004. <table>
  4005. <thead>
  4006. <tr>
  4007. <th>Field</th>
  4008. <th>Description</th>
  4009. </tr>
  4010. </thead>
  4011. <tbody>
  4012. <tr>
  4013. <td>
  4014. <code>account</code></br>
  4015. <em>
  4016. string
  4017. </em>
  4018. </td>
  4019. <td>
  4020. <p>Account is the Conjur organization account name.</p>
  4021. </td>
  4022. </tr>
  4023. <tr>
  4024. <td>
  4025. <code>userRef</code></br>
  4026. <em>
  4027. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4028. External Secrets meta/v1.SecretKeySelector
  4029. </a>
  4030. </em>
  4031. </td>
  4032. <td>
  4033. <p>A reference to a specific &lsquo;key&rsquo; containing the Conjur username
  4034. within a Secret resource. In some instances, <code>key</code> is a required field.</p>
  4035. </td>
  4036. </tr>
  4037. <tr>
  4038. <td>
  4039. <code>apiKeyRef</code></br>
  4040. <em>
  4041. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4042. External Secrets meta/v1.SecretKeySelector
  4043. </a>
  4044. </em>
  4045. </td>
  4046. <td>
  4047. <p>A reference to a specific &lsquo;key&rsquo; containing the Conjur API key
  4048. within a Secret resource. In some instances, <code>key</code> is a required field.</p>
  4049. </td>
  4050. </tr>
  4051. </tbody>
  4052. </table>
  4053. <h3 id="external-secrets.io/v1.ConjurAuth">ConjurAuth
  4054. </h3>
  4055. <p>
  4056. (<em>Appears on:</em>
  4057. <a href="#external-secrets.io/v1.ConjurProvider">ConjurProvider</a>)
  4058. </p>
  4059. <p>
  4060. </p>
  4061. <table>
  4062. <thead>
  4063. <tr>
  4064. <th>Field</th>
  4065. <th>Description</th>
  4066. </tr>
  4067. </thead>
  4068. <tbody>
  4069. <tr>
  4070. <td>
  4071. <code>apikey</code></br>
  4072. <em>
  4073. <a href="#external-secrets.io/v1.ConjurAPIKey">
  4074. ConjurAPIKey
  4075. </a>
  4076. </em>
  4077. </td>
  4078. <td>
  4079. <em>(Optional)</em>
  4080. <p>Authenticates with Conjur using an API key.</p>
  4081. </td>
  4082. </tr>
  4083. <tr>
  4084. <td>
  4085. <code>jwt</code></br>
  4086. <em>
  4087. <a href="#external-secrets.io/v1.ConjurJWT">
  4088. ConjurJWT
  4089. </a>
  4090. </em>
  4091. </td>
  4092. <td>
  4093. <em>(Optional)</em>
  4094. <p>Jwt enables JWT authentication using Kubernetes service account tokens.</p>
  4095. </td>
  4096. </tr>
  4097. </tbody>
  4098. </table>
  4099. <h3 id="external-secrets.io/v1.ConjurJWT">ConjurJWT
  4100. </h3>
  4101. <p>
  4102. (<em>Appears on:</em>
  4103. <a href="#external-secrets.io/v1.ConjurAuth">ConjurAuth</a>)
  4104. </p>
  4105. <p>
  4106. </p>
  4107. <table>
  4108. <thead>
  4109. <tr>
  4110. <th>Field</th>
  4111. <th>Description</th>
  4112. </tr>
  4113. </thead>
  4114. <tbody>
  4115. <tr>
  4116. <td>
  4117. <code>account</code></br>
  4118. <em>
  4119. string
  4120. </em>
  4121. </td>
  4122. <td>
  4123. <p>Account is the Conjur organization account name.</p>
  4124. </td>
  4125. </tr>
  4126. <tr>
  4127. <td>
  4128. <code>serviceID</code></br>
  4129. <em>
  4130. string
  4131. </em>
  4132. </td>
  4133. <td>
  4134. <p>The conjur authn jwt webservice id</p>
  4135. </td>
  4136. </tr>
  4137. <tr>
  4138. <td>
  4139. <code>hostId</code></br>
  4140. <em>
  4141. string
  4142. </em>
  4143. </td>
  4144. <td>
  4145. <em>(Optional)</em>
  4146. <p>Optional HostID for JWT authentication. This may be used depending
  4147. on how the Conjur JWT authenticator policy is configured.</p>
  4148. </td>
  4149. </tr>
  4150. <tr>
  4151. <td>
  4152. <code>secretRef</code></br>
  4153. <em>
  4154. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4155. External Secrets meta/v1.SecretKeySelector
  4156. </a>
  4157. </em>
  4158. </td>
  4159. <td>
  4160. <em>(Optional)</em>
  4161. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  4162. authenticate with Conjur using the JWT authentication method.</p>
  4163. </td>
  4164. </tr>
  4165. <tr>
  4166. <td>
  4167. <code>serviceAccountRef</code></br>
  4168. <em>
  4169. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  4170. External Secrets meta/v1.ServiceAccountSelector
  4171. </a>
  4172. </em>
  4173. </td>
  4174. <td>
  4175. <em>(Optional)</em>
  4176. <p>Optional ServiceAccountRef specifies the Kubernetes service account for which to request
  4177. a token for with the <code>TokenRequest</code> API.</p>
  4178. </td>
  4179. </tr>
  4180. </tbody>
  4181. </table>
  4182. <h3 id="external-secrets.io/v1.ConjurProvider">ConjurProvider
  4183. </h3>
  4184. <p>
  4185. (<em>Appears on:</em>
  4186. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  4187. </p>
  4188. <p>
  4189. </p>
  4190. <table>
  4191. <thead>
  4192. <tr>
  4193. <th>Field</th>
  4194. <th>Description</th>
  4195. </tr>
  4196. </thead>
  4197. <tbody>
  4198. <tr>
  4199. <td>
  4200. <code>url</code></br>
  4201. <em>
  4202. string
  4203. </em>
  4204. </td>
  4205. <td>
  4206. <p>URL is the endpoint of the Conjur instance.</p>
  4207. </td>
  4208. </tr>
  4209. <tr>
  4210. <td>
  4211. <code>caBundle</code></br>
  4212. <em>
  4213. string
  4214. </em>
  4215. </td>
  4216. <td>
  4217. <em>(Optional)</em>
  4218. <p>CABundle is a PEM encoded CA bundle that will be used to validate the Conjur server certificate.</p>
  4219. </td>
  4220. </tr>
  4221. <tr>
  4222. <td>
  4223. <code>caProvider</code></br>
  4224. <em>
  4225. <a href="#external-secrets.io/v1.CAProvider">
  4226. CAProvider
  4227. </a>
  4228. </em>
  4229. </td>
  4230. <td>
  4231. <em>(Optional)</em>
  4232. <p>Used to provide custom certificate authority (CA) certificates
  4233. for a secret store. The CAProvider points to a Secret or ConfigMap resource
  4234. that contains a PEM-encoded certificate.</p>
  4235. </td>
  4236. </tr>
  4237. <tr>
  4238. <td>
  4239. <code>auth</code></br>
  4240. <em>
  4241. <a href="#external-secrets.io/v1.ConjurAuth">
  4242. ConjurAuth
  4243. </a>
  4244. </em>
  4245. </td>
  4246. <td>
  4247. <p>Defines authentication settings for connecting to Conjur.</p>
  4248. </td>
  4249. </tr>
  4250. </tbody>
  4251. </table>
  4252. <h3 id="external-secrets.io/v1.DelineaProvider">DelineaProvider
  4253. </h3>
  4254. <p>
  4255. (<em>Appears on:</em>
  4256. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  4257. </p>
  4258. <p>
  4259. <p>See <a href="https://github.com/DelineaXPM/dsv-sdk-go/blob/main/vault/vault.go">https://github.com/DelineaXPM/dsv-sdk-go/blob/main/vault/vault.go</a>.</p>
  4260. </p>
  4261. <table>
  4262. <thead>
  4263. <tr>
  4264. <th>Field</th>
  4265. <th>Description</th>
  4266. </tr>
  4267. </thead>
  4268. <tbody>
  4269. <tr>
  4270. <td>
  4271. <code>clientId</code></br>
  4272. <em>
  4273. <a href="#external-secrets.io/v1.DelineaProviderSecretRef">
  4274. DelineaProviderSecretRef
  4275. </a>
  4276. </em>
  4277. </td>
  4278. <td>
  4279. <p>ClientID is the non-secret part of the credential.</p>
  4280. </td>
  4281. </tr>
  4282. <tr>
  4283. <td>
  4284. <code>clientSecret</code></br>
  4285. <em>
  4286. <a href="#external-secrets.io/v1.DelineaProviderSecretRef">
  4287. DelineaProviderSecretRef
  4288. </a>
  4289. </em>
  4290. </td>
  4291. <td>
  4292. <p>ClientSecret is the secret part of the credential.</p>
  4293. </td>
  4294. </tr>
  4295. <tr>
  4296. <td>
  4297. <code>tenant</code></br>
  4298. <em>
  4299. string
  4300. </em>
  4301. </td>
  4302. <td>
  4303. <p>Tenant is the chosen hostname / site name.</p>
  4304. </td>
  4305. </tr>
  4306. <tr>
  4307. <td>
  4308. <code>urlTemplate</code></br>
  4309. <em>
  4310. string
  4311. </em>
  4312. </td>
  4313. <td>
  4314. <em>(Optional)</em>
  4315. <p>URLTemplate
  4316. If unset, defaults to &ldquo;https://%s.secretsvaultcloud.%s/v1/%s%s&rdquo;.</p>
  4317. </td>
  4318. </tr>
  4319. <tr>
  4320. <td>
  4321. <code>tld</code></br>
  4322. <em>
  4323. string
  4324. </em>
  4325. </td>
  4326. <td>
  4327. <em>(Optional)</em>
  4328. <p>TLD is based on the server location that was chosen during provisioning.
  4329. If unset, defaults to &ldquo;com&rdquo;.</p>
  4330. </td>
  4331. </tr>
  4332. </tbody>
  4333. </table>
  4334. <h3 id="external-secrets.io/v1.DelineaProviderSecretRef">DelineaProviderSecretRef
  4335. </h3>
  4336. <p>
  4337. (<em>Appears on:</em>
  4338. <a href="#external-secrets.io/v1.DelineaProvider">DelineaProvider</a>)
  4339. </p>
  4340. <p>
  4341. </p>
  4342. <table>
  4343. <thead>
  4344. <tr>
  4345. <th>Field</th>
  4346. <th>Description</th>
  4347. </tr>
  4348. </thead>
  4349. <tbody>
  4350. <tr>
  4351. <td>
  4352. <code>value</code></br>
  4353. <em>
  4354. string
  4355. </em>
  4356. </td>
  4357. <td>
  4358. <em>(Optional)</em>
  4359. <p>Value can be specified directly to set a value without using a secret.</p>
  4360. </td>
  4361. </tr>
  4362. <tr>
  4363. <td>
  4364. <code>secretRef</code></br>
  4365. <em>
  4366. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4367. External Secrets meta/v1.SecretKeySelector
  4368. </a>
  4369. </em>
  4370. </td>
  4371. <td>
  4372. <em>(Optional)</em>
  4373. <p>SecretRef references a key in a secret that will be used as value.</p>
  4374. </td>
  4375. </tr>
  4376. </tbody>
  4377. </table>
  4378. <h3 id="external-secrets.io/v1.Device42Auth">Device42Auth
  4379. </h3>
  4380. <p>
  4381. (<em>Appears on:</em>
  4382. <a href="#external-secrets.io/v1.Device42Provider">Device42Provider</a>)
  4383. </p>
  4384. <p>
  4385. </p>
  4386. <table>
  4387. <thead>
  4388. <tr>
  4389. <th>Field</th>
  4390. <th>Description</th>
  4391. </tr>
  4392. </thead>
  4393. <tbody>
  4394. <tr>
  4395. <td>
  4396. <code>secretRef</code></br>
  4397. <em>
  4398. <a href="#external-secrets.io/v1.Device42SecretRef">
  4399. Device42SecretRef
  4400. </a>
  4401. </em>
  4402. </td>
  4403. <td>
  4404. </td>
  4405. </tr>
  4406. </tbody>
  4407. </table>
  4408. <h3 id="external-secrets.io/v1.Device42Provider">Device42Provider
  4409. </h3>
  4410. <p>
  4411. (<em>Appears on:</em>
  4412. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  4413. </p>
  4414. <p>
  4415. <p>Device42Provider configures a store to sync secrets with a Device42 instance.</p>
  4416. </p>
  4417. <table>
  4418. <thead>
  4419. <tr>
  4420. <th>Field</th>
  4421. <th>Description</th>
  4422. </tr>
  4423. </thead>
  4424. <tbody>
  4425. <tr>
  4426. <td>
  4427. <code>host</code></br>
  4428. <em>
  4429. string
  4430. </em>
  4431. </td>
  4432. <td>
  4433. <p>URL configures the Device42 instance URL.</p>
  4434. </td>
  4435. </tr>
  4436. <tr>
  4437. <td>
  4438. <code>auth</code></br>
  4439. <em>
  4440. <a href="#external-secrets.io/v1.Device42Auth">
  4441. Device42Auth
  4442. </a>
  4443. </em>
  4444. </td>
  4445. <td>
  4446. <p>Auth configures how secret-manager authenticates with a Device42 instance.</p>
  4447. </td>
  4448. </tr>
  4449. </tbody>
  4450. </table>
  4451. <h3 id="external-secrets.io/v1.Device42SecretRef">Device42SecretRef
  4452. </h3>
  4453. <p>
  4454. (<em>Appears on:</em>
  4455. <a href="#external-secrets.io/v1.Device42Auth">Device42Auth</a>)
  4456. </p>
  4457. <p>
  4458. </p>
  4459. <table>
  4460. <thead>
  4461. <tr>
  4462. <th>Field</th>
  4463. <th>Description</th>
  4464. </tr>
  4465. </thead>
  4466. <tbody>
  4467. <tr>
  4468. <td>
  4469. <code>credentials</code></br>
  4470. <em>
  4471. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4472. External Secrets meta/v1.SecretKeySelector
  4473. </a>
  4474. </em>
  4475. </td>
  4476. <td>
  4477. <em>(Optional)</em>
  4478. <p>Username / Password is used for authentication.</p>
  4479. </td>
  4480. </tr>
  4481. </tbody>
  4482. </table>
  4483. <h3 id="external-secrets.io/v1.DopplerAuth">DopplerAuth
  4484. </h3>
  4485. <p>
  4486. (<em>Appears on:</em>
  4487. <a href="#external-secrets.io/v1.DopplerProvider">DopplerProvider</a>)
  4488. </p>
  4489. <p>
  4490. </p>
  4491. <table>
  4492. <thead>
  4493. <tr>
  4494. <th>Field</th>
  4495. <th>Description</th>
  4496. </tr>
  4497. </thead>
  4498. <tbody>
  4499. <tr>
  4500. <td>
  4501. <code>secretRef</code></br>
  4502. <em>
  4503. <a href="#external-secrets.io/v1.DopplerAuthSecretRef">
  4504. DopplerAuthSecretRef
  4505. </a>
  4506. </em>
  4507. </td>
  4508. <td>
  4509. </td>
  4510. </tr>
  4511. </tbody>
  4512. </table>
  4513. <h3 id="external-secrets.io/v1.DopplerAuthSecretRef">DopplerAuthSecretRef
  4514. </h3>
  4515. <p>
  4516. (<em>Appears on:</em>
  4517. <a href="#external-secrets.io/v1.DopplerAuth">DopplerAuth</a>)
  4518. </p>
  4519. <p>
  4520. </p>
  4521. <table>
  4522. <thead>
  4523. <tr>
  4524. <th>Field</th>
  4525. <th>Description</th>
  4526. </tr>
  4527. </thead>
  4528. <tbody>
  4529. <tr>
  4530. <td>
  4531. <code>dopplerToken</code></br>
  4532. <em>
  4533. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4534. External Secrets meta/v1.SecretKeySelector
  4535. </a>
  4536. </em>
  4537. </td>
  4538. <td>
  4539. <p>The DopplerToken is used for authentication.
  4540. See <a href="https://docs.doppler.com/reference/api#authentication">https://docs.doppler.com/reference/api#authentication</a> for auth token types.
  4541. The Key attribute defaults to dopplerToken if not specified.</p>
  4542. </td>
  4543. </tr>
  4544. </tbody>
  4545. </table>
  4546. <h3 id="external-secrets.io/v1.DopplerProvider">DopplerProvider
  4547. </h3>
  4548. <p>
  4549. (<em>Appears on:</em>
  4550. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  4551. </p>
  4552. <p>
  4553. <p>DopplerProvider configures a store to sync secrets using the Doppler provider.
  4554. Project and Config are required if not using a Service Token.</p>
  4555. </p>
  4556. <table>
  4557. <thead>
  4558. <tr>
  4559. <th>Field</th>
  4560. <th>Description</th>
  4561. </tr>
  4562. </thead>
  4563. <tbody>
  4564. <tr>
  4565. <td>
  4566. <code>auth</code></br>
  4567. <em>
  4568. <a href="#external-secrets.io/v1.DopplerAuth">
  4569. DopplerAuth
  4570. </a>
  4571. </em>
  4572. </td>
  4573. <td>
  4574. <p>Auth configures how the Operator authenticates with the Doppler API</p>
  4575. </td>
  4576. </tr>
  4577. <tr>
  4578. <td>
  4579. <code>project</code></br>
  4580. <em>
  4581. string
  4582. </em>
  4583. </td>
  4584. <td>
  4585. <em>(Optional)</em>
  4586. <p>Doppler project (required if not using a Service Token)</p>
  4587. </td>
  4588. </tr>
  4589. <tr>
  4590. <td>
  4591. <code>config</code></br>
  4592. <em>
  4593. string
  4594. </em>
  4595. </td>
  4596. <td>
  4597. <em>(Optional)</em>
  4598. <p>Doppler config (required if not using a Service Token)</p>
  4599. </td>
  4600. </tr>
  4601. <tr>
  4602. <td>
  4603. <code>nameTransformer</code></br>
  4604. <em>
  4605. string
  4606. </em>
  4607. </td>
  4608. <td>
  4609. <em>(Optional)</em>
  4610. <p>Environment variable compatible name transforms that change secret names to a different format</p>
  4611. </td>
  4612. </tr>
  4613. <tr>
  4614. <td>
  4615. <code>format</code></br>
  4616. <em>
  4617. string
  4618. </em>
  4619. </td>
  4620. <td>
  4621. <em>(Optional)</em>
  4622. <p>Format enables the downloading of secrets as a file (string)</p>
  4623. </td>
  4624. </tr>
  4625. </tbody>
  4626. </table>
  4627. <h3 id="external-secrets.io/v1.ExternalSecret">ExternalSecret
  4628. </h3>
  4629. <p>
  4630. <p>ExternalSecret is the Schema for the external-secrets API.</p>
  4631. </p>
  4632. <table>
  4633. <thead>
  4634. <tr>
  4635. <th>Field</th>
  4636. <th>Description</th>
  4637. </tr>
  4638. </thead>
  4639. <tbody>
  4640. <tr>
  4641. <td>
  4642. <code>metadata</code></br>
  4643. <em>
  4644. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  4645. Kubernetes meta/v1.ObjectMeta
  4646. </a>
  4647. </em>
  4648. </td>
  4649. <td>
  4650. Refer to the Kubernetes API documentation for the fields of the
  4651. <code>metadata</code> field.
  4652. </td>
  4653. </tr>
  4654. <tr>
  4655. <td>
  4656. <code>spec</code></br>
  4657. <em>
  4658. <a href="#external-secrets.io/v1.ExternalSecretSpec">
  4659. ExternalSecretSpec
  4660. </a>
  4661. </em>
  4662. </td>
  4663. <td>
  4664. <br/>
  4665. <br/>
  4666. <table>
  4667. <tr>
  4668. <td>
  4669. <code>secretStoreRef</code></br>
  4670. <em>
  4671. <a href="#external-secrets.io/v1.SecretStoreRef">
  4672. SecretStoreRef
  4673. </a>
  4674. </em>
  4675. </td>
  4676. <td>
  4677. <em>(Optional)</em>
  4678. </td>
  4679. </tr>
  4680. <tr>
  4681. <td>
  4682. <code>target</code></br>
  4683. <em>
  4684. <a href="#external-secrets.io/v1.ExternalSecretTarget">
  4685. ExternalSecretTarget
  4686. </a>
  4687. </em>
  4688. </td>
  4689. <td>
  4690. <em>(Optional)</em>
  4691. </td>
  4692. </tr>
  4693. <tr>
  4694. <td>
  4695. <code>refreshPolicy</code></br>
  4696. <em>
  4697. <a href="#external-secrets.io/v1.ExternalSecretRefreshPolicy">
  4698. ExternalSecretRefreshPolicy
  4699. </a>
  4700. </em>
  4701. </td>
  4702. <td>
  4703. <em>(Optional)</em>
  4704. <p>RefreshPolicy determines how the ExternalSecret should be refreshed:
  4705. - CreatedOnce: Creates the Secret only if it does not exist and does not update it thereafter
  4706. - Periodic: Synchronizes the Secret from the external source at regular intervals specified by refreshInterval.
  4707. No periodic updates occur if refreshInterval is 0.
  4708. - OnChange: Only synchronizes the Secret when the ExternalSecret&rsquo;s metadata or specification changes</p>
  4709. </td>
  4710. </tr>
  4711. <tr>
  4712. <td>
  4713. <code>refreshInterval</code></br>
  4714. <em>
  4715. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  4716. Kubernetes meta/v1.Duration
  4717. </a>
  4718. </em>
  4719. </td>
  4720. <td>
  4721. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider,
  4722. specified as Golang Duration strings.
  4723. Valid time units are &ldquo;ns&rdquo;, &ldquo;us&rdquo; (or &ldquo;µs&rdquo;), &ldquo;ms&rdquo;, &ldquo;s&rdquo;, &ldquo;m&rdquo;, &ldquo;h&rdquo;
  4724. Example values: &ldquo;1h&rdquo;, &ldquo;2h30m&rdquo;, &ldquo;10s&rdquo;
  4725. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  4726. </td>
  4727. </tr>
  4728. <tr>
  4729. <td>
  4730. <code>data</code></br>
  4731. <em>
  4732. <a href="#external-secrets.io/v1.ExternalSecretData">
  4733. []ExternalSecretData
  4734. </a>
  4735. </em>
  4736. </td>
  4737. <td>
  4738. <em>(Optional)</em>
  4739. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  4740. </td>
  4741. </tr>
  4742. <tr>
  4743. <td>
  4744. <code>dataFrom</code></br>
  4745. <em>
  4746. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">
  4747. []ExternalSecretDataFromRemoteRef
  4748. </a>
  4749. </em>
  4750. </td>
  4751. <td>
  4752. <em>(Optional)</em>
  4753. <p>DataFrom is used to fetch all properties from a specific Provider data
  4754. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  4755. </td>
  4756. </tr>
  4757. </table>
  4758. </td>
  4759. </tr>
  4760. <tr>
  4761. <td>
  4762. <code>status</code></br>
  4763. <em>
  4764. <a href="#external-secrets.io/v1.ExternalSecretStatus">
  4765. ExternalSecretStatus
  4766. </a>
  4767. </em>
  4768. </td>
  4769. <td>
  4770. </td>
  4771. </tr>
  4772. </tbody>
  4773. </table>
  4774. <h3 id="external-secrets.io/v1.ExternalSecretConditionType">ExternalSecretConditionType
  4775. (<code>string</code> alias)</p></h3>
  4776. <p>
  4777. (<em>Appears on:</em>
  4778. <a href="#external-secrets.io/v1.ExternalSecretStatusCondition">ExternalSecretStatusCondition</a>)
  4779. </p>
  4780. <p>
  4781. </p>
  4782. <table>
  4783. <thead>
  4784. <tr>
  4785. <th>Value</th>
  4786. <th>Description</th>
  4787. </tr>
  4788. </thead>
  4789. <tbody><tr><td><p>&#34;Deleted&#34;</p></td>
  4790. <td></td>
  4791. </tr><tr><td><p>&#34;Ready&#34;</p></td>
  4792. <td></td>
  4793. </tr></tbody>
  4794. </table>
  4795. <h3 id="external-secrets.io/v1.ExternalSecretConversionStrategy">ExternalSecretConversionStrategy
  4796. (<code>string</code> alias)</p></h3>
  4797. <p>
  4798. (<em>Appears on:</em>
  4799. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  4800. <a href="#external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind</a>)
  4801. </p>
  4802. <p>
  4803. </p>
  4804. <table>
  4805. <thead>
  4806. <tr>
  4807. <th>Value</th>
  4808. <th>Description</th>
  4809. </tr>
  4810. </thead>
  4811. <tbody><tr><td><p>&#34;Default&#34;</p></td>
  4812. <td></td>
  4813. </tr><tr><td><p>&#34;Unicode&#34;</p></td>
  4814. <td></td>
  4815. </tr></tbody>
  4816. </table>
  4817. <h3 id="external-secrets.io/v1.ExternalSecretCreationPolicy">ExternalSecretCreationPolicy
  4818. (<code>string</code> alias)</p></h3>
  4819. <p>
  4820. (<em>Appears on:</em>
  4821. <a href="#external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget</a>)
  4822. </p>
  4823. <p>
  4824. <p>ExternalSecretCreationPolicy defines rules on how to create the resulting Secret.</p>
  4825. </p>
  4826. <table>
  4827. <thead>
  4828. <tr>
  4829. <th>Value</th>
  4830. <th>Description</th>
  4831. </tr>
  4832. </thead>
  4833. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  4834. <td><p>Merge does not create the Secret, but merges the data fields to the Secret.</p>
  4835. </td>
  4836. </tr><tr><td><p>&#34;None&#34;</p></td>
  4837. <td><p>None does not create a Secret (future use with injector).</p>
  4838. </td>
  4839. </tr><tr><td><p>&#34;Orphan&#34;</p></td>
  4840. <td><p>Orphan creates the Secret and does not set the ownerReference.
  4841. I.e. it will be orphaned after the deletion of the ExternalSecret.</p>
  4842. </td>
  4843. </tr><tr><td><p>&#34;Owner&#34;</p></td>
  4844. <td><p>Owner creates the Secret and sets .metadata.ownerReferences to the ExternalSecret resource.</p>
  4845. </td>
  4846. </tr></tbody>
  4847. </table>
  4848. <h3 id="external-secrets.io/v1.ExternalSecretData">ExternalSecretData
  4849. </h3>
  4850. <p>
  4851. (<em>Appears on:</em>
  4852. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  4853. </p>
  4854. <p>
  4855. <p>ExternalSecretData defines the connection between the Kubernetes Secret key (spec.data.<key>) and the Provider data.</p>
  4856. </p>
  4857. <table>
  4858. <thead>
  4859. <tr>
  4860. <th>Field</th>
  4861. <th>Description</th>
  4862. </tr>
  4863. </thead>
  4864. <tbody>
  4865. <tr>
  4866. <td>
  4867. <code>secretKey</code></br>
  4868. <em>
  4869. string
  4870. </em>
  4871. </td>
  4872. <td>
  4873. <p>The key in the Kubernetes Secret to store the value.</p>
  4874. </td>
  4875. </tr>
  4876. <tr>
  4877. <td>
  4878. <code>remoteRef</code></br>
  4879. <em>
  4880. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">
  4881. ExternalSecretDataRemoteRef
  4882. </a>
  4883. </em>
  4884. </td>
  4885. <td>
  4886. <p>RemoteRef points to the remote secret and defines
  4887. which secret (version/property/..) to fetch.</p>
  4888. </td>
  4889. </tr>
  4890. <tr>
  4891. <td>
  4892. <code>sourceRef</code></br>
  4893. <em>
  4894. <a href="#external-secrets.io/v1.StoreSourceRef">
  4895. StoreSourceRef
  4896. </a>
  4897. </em>
  4898. </td>
  4899. <td>
  4900. <p>SourceRef allows you to override the source
  4901. from which the value will be pulled.</p>
  4902. </td>
  4903. </tr>
  4904. </tbody>
  4905. </table>
  4906. <h3 id="external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef
  4907. </h3>
  4908. <p>
  4909. (<em>Appears on:</em>
  4910. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  4911. </p>
  4912. <p>
  4913. </p>
  4914. <table>
  4915. <thead>
  4916. <tr>
  4917. <th>Field</th>
  4918. <th>Description</th>
  4919. </tr>
  4920. </thead>
  4921. <tbody>
  4922. <tr>
  4923. <td>
  4924. <code>extract</code></br>
  4925. <em>
  4926. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">
  4927. ExternalSecretDataRemoteRef
  4928. </a>
  4929. </em>
  4930. </td>
  4931. <td>
  4932. <em>(Optional)</em>
  4933. <p>Used to extract multiple key/value pairs from one secret
  4934. Note: Extract does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  4935. </td>
  4936. </tr>
  4937. <tr>
  4938. <td>
  4939. <code>find</code></br>
  4940. <em>
  4941. <a href="#external-secrets.io/v1.ExternalSecretFind">
  4942. ExternalSecretFind
  4943. </a>
  4944. </em>
  4945. </td>
  4946. <td>
  4947. <em>(Optional)</em>
  4948. <p>Used to find secrets based on tags or regular expressions
  4949. Note: Find does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  4950. </td>
  4951. </tr>
  4952. <tr>
  4953. <td>
  4954. <code>rewrite</code></br>
  4955. <em>
  4956. <a href="#external-secrets.io/v1.ExternalSecretRewrite">
  4957. []ExternalSecretRewrite
  4958. </a>
  4959. </em>
  4960. </td>
  4961. <td>
  4962. <em>(Optional)</em>
  4963. <p>Used to rewrite secret Keys after getting them from the secret Provider
  4964. Multiple Rewrite operations can be provided. They are applied in a layered order (first to last)</p>
  4965. </td>
  4966. </tr>
  4967. <tr>
  4968. <td>
  4969. <code>sourceRef</code></br>
  4970. <em>
  4971. <a href="#external-secrets.io/v1.StoreGeneratorSourceRef">
  4972. StoreGeneratorSourceRef
  4973. </a>
  4974. </em>
  4975. </td>
  4976. <td>
  4977. <p>SourceRef points to a store or generator
  4978. which contains secret values ready to use.
  4979. Use this in combination with Extract or Find pull values out of
  4980. a specific SecretStore.
  4981. When sourceRef points to a generator Extract or Find is not supported.
  4982. The generator returns a static map of values</p>
  4983. </td>
  4984. </tr>
  4985. </tbody>
  4986. </table>
  4987. <h3 id="external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef
  4988. </h3>
  4989. <p>
  4990. (<em>Appears on:</em>
  4991. <a href="#external-secrets.io/v1.ExternalSecretData">ExternalSecretData</a>,
  4992. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  4993. </p>
  4994. <p>
  4995. <p>ExternalSecretDataRemoteRef defines Provider data location.</p>
  4996. </p>
  4997. <table>
  4998. <thead>
  4999. <tr>
  5000. <th>Field</th>
  5001. <th>Description</th>
  5002. </tr>
  5003. </thead>
  5004. <tbody>
  5005. <tr>
  5006. <td>
  5007. <code>key</code></br>
  5008. <em>
  5009. string
  5010. </em>
  5011. </td>
  5012. <td>
  5013. <p>Key is the key used in the Provider, mandatory</p>
  5014. </td>
  5015. </tr>
  5016. <tr>
  5017. <td>
  5018. <code>metadataPolicy</code></br>
  5019. <em>
  5020. <a href="#external-secrets.io/v1.ExternalSecretMetadataPolicy">
  5021. ExternalSecretMetadataPolicy
  5022. </a>
  5023. </em>
  5024. </td>
  5025. <td>
  5026. <em>(Optional)</em>
  5027. <p>Policy for fetching tags/labels from provider secrets, possible options are Fetch, None. Defaults to None</p>
  5028. </td>
  5029. </tr>
  5030. <tr>
  5031. <td>
  5032. <code>property</code></br>
  5033. <em>
  5034. string
  5035. </em>
  5036. </td>
  5037. <td>
  5038. <em>(Optional)</em>
  5039. <p>Used to select a specific property of the Provider value (if a map), if supported</p>
  5040. </td>
  5041. </tr>
  5042. <tr>
  5043. <td>
  5044. <code>version</code></br>
  5045. <em>
  5046. string
  5047. </em>
  5048. </td>
  5049. <td>
  5050. <em>(Optional)</em>
  5051. <p>Used to select a specific version of the Provider value, if supported</p>
  5052. </td>
  5053. </tr>
  5054. <tr>
  5055. <td>
  5056. <code>conversionStrategy</code></br>
  5057. <em>
  5058. <a href="#external-secrets.io/v1.ExternalSecretConversionStrategy">
  5059. ExternalSecretConversionStrategy
  5060. </a>
  5061. </em>
  5062. </td>
  5063. <td>
  5064. <em>(Optional)</em>
  5065. <p>Used to define a conversion Strategy</p>
  5066. </td>
  5067. </tr>
  5068. <tr>
  5069. <td>
  5070. <code>decodingStrategy</code></br>
  5071. <em>
  5072. <a href="#external-secrets.io/v1.ExternalSecretDecodingStrategy">
  5073. ExternalSecretDecodingStrategy
  5074. </a>
  5075. </em>
  5076. </td>
  5077. <td>
  5078. <em>(Optional)</em>
  5079. <p>Used to define a decoding Strategy</p>
  5080. </td>
  5081. </tr>
  5082. </tbody>
  5083. </table>
  5084. <h3 id="external-secrets.io/v1.ExternalSecretDecodingStrategy">ExternalSecretDecodingStrategy
  5085. (<code>string</code> alias)</p></h3>
  5086. <p>
  5087. (<em>Appears on:</em>
  5088. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  5089. <a href="#external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind</a>)
  5090. </p>
  5091. <p>
  5092. </p>
  5093. <table>
  5094. <thead>
  5095. <tr>
  5096. <th>Value</th>
  5097. <th>Description</th>
  5098. </tr>
  5099. </thead>
  5100. <tbody><tr><td><p>&#34;Auto&#34;</p></td>
  5101. <td></td>
  5102. </tr><tr><td><p>&#34;Base64&#34;</p></td>
  5103. <td></td>
  5104. </tr><tr><td><p>&#34;Base64URL&#34;</p></td>
  5105. <td></td>
  5106. </tr><tr><td><p>&#34;None&#34;</p></td>
  5107. <td></td>
  5108. </tr></tbody>
  5109. </table>
  5110. <h3 id="external-secrets.io/v1.ExternalSecretDeletionPolicy">ExternalSecretDeletionPolicy
  5111. (<code>string</code> alias)</p></h3>
  5112. <p>
  5113. (<em>Appears on:</em>
  5114. <a href="#external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget</a>)
  5115. </p>
  5116. <p>
  5117. <p>ExternalSecretDeletionPolicy defines rules on how to delete the resulting Secret.</p>
  5118. </p>
  5119. <table>
  5120. <thead>
  5121. <tr>
  5122. <th>Value</th>
  5123. <th>Description</th>
  5124. </tr>
  5125. </thead>
  5126. <tbody><tr><td><p>&#34;Delete&#34;</p></td>
  5127. <td><p>Delete deletes the secret if all provider secrets are deleted.
  5128. If a secret gets deleted on the provider side and is not accessible
  5129. anymore this is not considered an error and the ExternalSecret
  5130. does not go into SecretSyncedError status.</p>
  5131. </td>
  5132. </tr><tr><td><p>&#34;Merge&#34;</p></td>
  5133. <td><p>Merge removes keys in the secret, but not the secret itself.
  5134. If a secret gets deleted on the provider side and is not accessible
  5135. anymore this is not considered an error and the ExternalSecret
  5136. does not go into SecretSyncedError status.</p>
  5137. </td>
  5138. </tr><tr><td><p>&#34;Retain&#34;</p></td>
  5139. <td><p>Retain will retain the secret if all provider secrets have been deleted.
  5140. If a provider secret does not exist the ExternalSecret gets into the
  5141. SecretSyncedError status.</p>
  5142. </td>
  5143. </tr></tbody>
  5144. </table>
  5145. <h3 id="external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind
  5146. </h3>
  5147. <p>
  5148. (<em>Appears on:</em>
  5149. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  5150. </p>
  5151. <p>
  5152. </p>
  5153. <table>
  5154. <thead>
  5155. <tr>
  5156. <th>Field</th>
  5157. <th>Description</th>
  5158. </tr>
  5159. </thead>
  5160. <tbody>
  5161. <tr>
  5162. <td>
  5163. <code>path</code></br>
  5164. <em>
  5165. string
  5166. </em>
  5167. </td>
  5168. <td>
  5169. <em>(Optional)</em>
  5170. <p>A root path to start the find operations.</p>
  5171. </td>
  5172. </tr>
  5173. <tr>
  5174. <td>
  5175. <code>name</code></br>
  5176. <em>
  5177. <a href="#external-secrets.io/v1.FindName">
  5178. FindName
  5179. </a>
  5180. </em>
  5181. </td>
  5182. <td>
  5183. <em>(Optional)</em>
  5184. <p>Finds secrets based on the name.</p>
  5185. </td>
  5186. </tr>
  5187. <tr>
  5188. <td>
  5189. <code>tags</code></br>
  5190. <em>
  5191. map[string]string
  5192. </em>
  5193. </td>
  5194. <td>
  5195. <em>(Optional)</em>
  5196. <p>Find secrets based on tags.</p>
  5197. </td>
  5198. </tr>
  5199. <tr>
  5200. <td>
  5201. <code>conversionStrategy</code></br>
  5202. <em>
  5203. <a href="#external-secrets.io/v1.ExternalSecretConversionStrategy">
  5204. ExternalSecretConversionStrategy
  5205. </a>
  5206. </em>
  5207. </td>
  5208. <td>
  5209. <em>(Optional)</em>
  5210. <p>Used to define a conversion Strategy</p>
  5211. </td>
  5212. </tr>
  5213. <tr>
  5214. <td>
  5215. <code>decodingStrategy</code></br>
  5216. <em>
  5217. <a href="#external-secrets.io/v1.ExternalSecretDecodingStrategy">
  5218. ExternalSecretDecodingStrategy
  5219. </a>
  5220. </em>
  5221. </td>
  5222. <td>
  5223. <em>(Optional)</em>
  5224. <p>Used to define a decoding Strategy</p>
  5225. </td>
  5226. </tr>
  5227. </tbody>
  5228. </table>
  5229. <h3 id="external-secrets.io/v1.ExternalSecretMetadata">ExternalSecretMetadata
  5230. </h3>
  5231. <p>
  5232. (<em>Appears on:</em>
  5233. <a href="#external-secrets.io/v1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>)
  5234. </p>
  5235. <p>
  5236. <p>ExternalSecretMetadata defines metadata fields for the ExternalSecret generated by the ClusterExternalSecret.</p>
  5237. </p>
  5238. <table>
  5239. <thead>
  5240. <tr>
  5241. <th>Field</th>
  5242. <th>Description</th>
  5243. </tr>
  5244. </thead>
  5245. <tbody>
  5246. <tr>
  5247. <td>
  5248. <code>annotations</code></br>
  5249. <em>
  5250. map[string]string
  5251. </em>
  5252. </td>
  5253. <td>
  5254. <em>(Optional)</em>
  5255. </td>
  5256. </tr>
  5257. <tr>
  5258. <td>
  5259. <code>labels</code></br>
  5260. <em>
  5261. map[string]string
  5262. </em>
  5263. </td>
  5264. <td>
  5265. <em>(Optional)</em>
  5266. </td>
  5267. </tr>
  5268. </tbody>
  5269. </table>
  5270. <h3 id="external-secrets.io/v1.ExternalSecretMetadataPolicy">ExternalSecretMetadataPolicy
  5271. (<code>string</code> alias)</p></h3>
  5272. <p>
  5273. (<em>Appears on:</em>
  5274. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>)
  5275. </p>
  5276. <p>
  5277. </p>
  5278. <table>
  5279. <thead>
  5280. <tr>
  5281. <th>Value</th>
  5282. <th>Description</th>
  5283. </tr>
  5284. </thead>
  5285. <tbody><tr><td><p>&#34;Fetch&#34;</p></td>
  5286. <td></td>
  5287. </tr><tr><td><p>&#34;None&#34;</p></td>
  5288. <td></td>
  5289. </tr></tbody>
  5290. </table>
  5291. <h3 id="external-secrets.io/v1.ExternalSecretRefreshPolicy">ExternalSecretRefreshPolicy
  5292. (<code>string</code> alias)</p></h3>
  5293. <p>
  5294. (<em>Appears on:</em>
  5295. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  5296. </p>
  5297. <p>
  5298. </p>
  5299. <table>
  5300. <thead>
  5301. <tr>
  5302. <th>Value</th>
  5303. <th>Description</th>
  5304. </tr>
  5305. </thead>
  5306. <tbody><tr><td><p>&#34;CreatedOnce&#34;</p></td>
  5307. <td></td>
  5308. </tr><tr><td><p>&#34;OnChange&#34;</p></td>
  5309. <td></td>
  5310. </tr><tr><td><p>&#34;Periodic&#34;</p></td>
  5311. <td></td>
  5312. </tr></tbody>
  5313. </table>
  5314. <h3 id="external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite
  5315. </h3>
  5316. <p>
  5317. (<em>Appears on:</em>
  5318. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  5319. </p>
  5320. <p>
  5321. </p>
  5322. <table>
  5323. <thead>
  5324. <tr>
  5325. <th>Field</th>
  5326. <th>Description</th>
  5327. </tr>
  5328. </thead>
  5329. <tbody>
  5330. <tr>
  5331. <td>
  5332. <code>merge</code></br>
  5333. <em>
  5334. <a href="#external-secrets.io/v1.ExternalSecretRewriteMerge">
  5335. ExternalSecretRewriteMerge
  5336. </a>
  5337. </em>
  5338. </td>
  5339. <td>
  5340. <em>(Optional)</em>
  5341. <p>Used to merge key/values in one single Secret
  5342. The resulting key will contain all values from the specified secrets</p>
  5343. </td>
  5344. </tr>
  5345. <tr>
  5346. <td>
  5347. <code>regexp</code></br>
  5348. <em>
  5349. <a href="#external-secrets.io/v1.ExternalSecretRewriteRegexp">
  5350. ExternalSecretRewriteRegexp
  5351. </a>
  5352. </em>
  5353. </td>
  5354. <td>
  5355. <em>(Optional)</em>
  5356. <p>Used to rewrite with regular expressions.
  5357. The resulting key will be the output of a regexp.ReplaceAll operation.</p>
  5358. </td>
  5359. </tr>
  5360. <tr>
  5361. <td>
  5362. <code>transform</code></br>
  5363. <em>
  5364. <a href="#external-secrets.io/v1.ExternalSecretRewriteTransform">
  5365. ExternalSecretRewriteTransform
  5366. </a>
  5367. </em>
  5368. </td>
  5369. <td>
  5370. <em>(Optional)</em>
  5371. <p>Used to apply string transformation on the secrets.
  5372. The resulting key will be the output of the template applied by the operation.</p>
  5373. </td>
  5374. </tr>
  5375. </tbody>
  5376. </table>
  5377. <h3 id="external-secrets.io/v1.ExternalSecretRewriteMerge">ExternalSecretRewriteMerge
  5378. </h3>
  5379. <p>
  5380. (<em>Appears on:</em>
  5381. <a href="#external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  5382. </p>
  5383. <p>
  5384. </p>
  5385. <table>
  5386. <thead>
  5387. <tr>
  5388. <th>Field</th>
  5389. <th>Description</th>
  5390. </tr>
  5391. </thead>
  5392. <tbody>
  5393. <tr>
  5394. <td>
  5395. <code>into</code></br>
  5396. <em>
  5397. string
  5398. </em>
  5399. </td>
  5400. <td>
  5401. <em>(Optional)</em>
  5402. <p>Used to define the target key of the merge operation.
  5403. Required if strategy is JSON. Ignored otherwise.</p>
  5404. </td>
  5405. </tr>
  5406. <tr>
  5407. <td>
  5408. <code>priority</code></br>
  5409. <em>
  5410. []string
  5411. </em>
  5412. </td>
  5413. <td>
  5414. <em>(Optional)</em>
  5415. <p>Used to define key priority in conflict resolution.</p>
  5416. </td>
  5417. </tr>
  5418. <tr>
  5419. <td>
  5420. <code>conflictPolicy</code></br>
  5421. <em>
  5422. <a href="#external-secrets.io/v1.ExternalSecretRewriteMergeConflictPolicy">
  5423. ExternalSecretRewriteMergeConflictPolicy
  5424. </a>
  5425. </em>
  5426. </td>
  5427. <td>
  5428. <em>(Optional)</em>
  5429. <p>Used to define the policy to use in conflict resolution.</p>
  5430. </td>
  5431. </tr>
  5432. <tr>
  5433. <td>
  5434. <code>strategy</code></br>
  5435. <em>
  5436. <a href="#external-secrets.io/v1.ExternalSecretRewriteMergeStrategy">
  5437. ExternalSecretRewriteMergeStrategy
  5438. </a>
  5439. </em>
  5440. </td>
  5441. <td>
  5442. <em>(Optional)</em>
  5443. <p>Used to define the strategy to use in the merge operation.</p>
  5444. </td>
  5445. </tr>
  5446. </tbody>
  5447. </table>
  5448. <h3 id="external-secrets.io/v1.ExternalSecretRewriteMergeConflictPolicy">ExternalSecretRewriteMergeConflictPolicy
  5449. (<code>string</code> alias)</p></h3>
  5450. <p>
  5451. (<em>Appears on:</em>
  5452. <a href="#external-secrets.io/v1.ExternalSecretRewriteMerge">ExternalSecretRewriteMerge</a>)
  5453. </p>
  5454. <p>
  5455. </p>
  5456. <table>
  5457. <thead>
  5458. <tr>
  5459. <th>Value</th>
  5460. <th>Description</th>
  5461. </tr>
  5462. </thead>
  5463. <tbody><tr><td><p>&#34;Error&#34;</p></td>
  5464. <td></td>
  5465. </tr><tr><td><p>&#34;Ignore&#34;</p></td>
  5466. <td></td>
  5467. </tr></tbody>
  5468. </table>
  5469. <h3 id="external-secrets.io/v1.ExternalSecretRewriteMergeStrategy">ExternalSecretRewriteMergeStrategy
  5470. (<code>string</code> alias)</p></h3>
  5471. <p>
  5472. (<em>Appears on:</em>
  5473. <a href="#external-secrets.io/v1.ExternalSecretRewriteMerge">ExternalSecretRewriteMerge</a>)
  5474. </p>
  5475. <p>
  5476. </p>
  5477. <table>
  5478. <thead>
  5479. <tr>
  5480. <th>Value</th>
  5481. <th>Description</th>
  5482. </tr>
  5483. </thead>
  5484. <tbody><tr><td><p>&#34;Extract&#34;</p></td>
  5485. <td></td>
  5486. </tr><tr><td><p>&#34;JSON&#34;</p></td>
  5487. <td></td>
  5488. </tr></tbody>
  5489. </table>
  5490. <h3 id="external-secrets.io/v1.ExternalSecretRewriteRegexp">ExternalSecretRewriteRegexp
  5491. </h3>
  5492. <p>
  5493. (<em>Appears on:</em>
  5494. <a href="#external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  5495. </p>
  5496. <p>
  5497. </p>
  5498. <table>
  5499. <thead>
  5500. <tr>
  5501. <th>Field</th>
  5502. <th>Description</th>
  5503. </tr>
  5504. </thead>
  5505. <tbody>
  5506. <tr>
  5507. <td>
  5508. <code>source</code></br>
  5509. <em>
  5510. string
  5511. </em>
  5512. </td>
  5513. <td>
  5514. <p>Used to define the regular expression of a re.Compiler.</p>
  5515. </td>
  5516. </tr>
  5517. <tr>
  5518. <td>
  5519. <code>target</code></br>
  5520. <em>
  5521. string
  5522. </em>
  5523. </td>
  5524. <td>
  5525. <p>Used to define the target pattern of a ReplaceAll operation.</p>
  5526. </td>
  5527. </tr>
  5528. </tbody>
  5529. </table>
  5530. <h3 id="external-secrets.io/v1.ExternalSecretRewriteTransform">ExternalSecretRewriteTransform
  5531. </h3>
  5532. <p>
  5533. (<em>Appears on:</em>
  5534. <a href="#external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  5535. </p>
  5536. <p>
  5537. </p>
  5538. <table>
  5539. <thead>
  5540. <tr>
  5541. <th>Field</th>
  5542. <th>Description</th>
  5543. </tr>
  5544. </thead>
  5545. <tbody>
  5546. <tr>
  5547. <td>
  5548. <code>template</code></br>
  5549. <em>
  5550. string
  5551. </em>
  5552. </td>
  5553. <td>
  5554. <p>Used to define the template to apply on the secret name.
  5555. <code>.value</code> will specify the secret name in the template.</p>
  5556. </td>
  5557. </tr>
  5558. </tbody>
  5559. </table>
  5560. <h3 id="external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec
  5561. </h3>
  5562. <p>
  5563. (<em>Appears on:</em>
  5564. <a href="#external-secrets.io/v1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>,
  5565. <a href="#external-secrets.io/v1.ExternalSecret">ExternalSecret</a>)
  5566. </p>
  5567. <p>
  5568. <p>ExternalSecretSpec defines the desired state of ExternalSecret.</p>
  5569. </p>
  5570. <table>
  5571. <thead>
  5572. <tr>
  5573. <th>Field</th>
  5574. <th>Description</th>
  5575. </tr>
  5576. </thead>
  5577. <tbody>
  5578. <tr>
  5579. <td>
  5580. <code>secretStoreRef</code></br>
  5581. <em>
  5582. <a href="#external-secrets.io/v1.SecretStoreRef">
  5583. SecretStoreRef
  5584. </a>
  5585. </em>
  5586. </td>
  5587. <td>
  5588. <em>(Optional)</em>
  5589. </td>
  5590. </tr>
  5591. <tr>
  5592. <td>
  5593. <code>target</code></br>
  5594. <em>
  5595. <a href="#external-secrets.io/v1.ExternalSecretTarget">
  5596. ExternalSecretTarget
  5597. </a>
  5598. </em>
  5599. </td>
  5600. <td>
  5601. <em>(Optional)</em>
  5602. </td>
  5603. </tr>
  5604. <tr>
  5605. <td>
  5606. <code>refreshPolicy</code></br>
  5607. <em>
  5608. <a href="#external-secrets.io/v1.ExternalSecretRefreshPolicy">
  5609. ExternalSecretRefreshPolicy
  5610. </a>
  5611. </em>
  5612. </td>
  5613. <td>
  5614. <em>(Optional)</em>
  5615. <p>RefreshPolicy determines how the ExternalSecret should be refreshed:
  5616. - CreatedOnce: Creates the Secret only if it does not exist and does not update it thereafter
  5617. - Periodic: Synchronizes the Secret from the external source at regular intervals specified by refreshInterval.
  5618. No periodic updates occur if refreshInterval is 0.
  5619. - OnChange: Only synchronizes the Secret when the ExternalSecret&rsquo;s metadata or specification changes</p>
  5620. </td>
  5621. </tr>
  5622. <tr>
  5623. <td>
  5624. <code>refreshInterval</code></br>
  5625. <em>
  5626. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  5627. Kubernetes meta/v1.Duration
  5628. </a>
  5629. </em>
  5630. </td>
  5631. <td>
  5632. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider,
  5633. specified as Golang Duration strings.
  5634. Valid time units are &ldquo;ns&rdquo;, &ldquo;us&rdquo; (or &ldquo;µs&rdquo;), &ldquo;ms&rdquo;, &ldquo;s&rdquo;, &ldquo;m&rdquo;, &ldquo;h&rdquo;
  5635. Example values: &ldquo;1h&rdquo;, &ldquo;2h30m&rdquo;, &ldquo;10s&rdquo;
  5636. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  5637. </td>
  5638. </tr>
  5639. <tr>
  5640. <td>
  5641. <code>data</code></br>
  5642. <em>
  5643. <a href="#external-secrets.io/v1.ExternalSecretData">
  5644. []ExternalSecretData
  5645. </a>
  5646. </em>
  5647. </td>
  5648. <td>
  5649. <em>(Optional)</em>
  5650. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  5651. </td>
  5652. </tr>
  5653. <tr>
  5654. <td>
  5655. <code>dataFrom</code></br>
  5656. <em>
  5657. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">
  5658. []ExternalSecretDataFromRemoteRef
  5659. </a>
  5660. </em>
  5661. </td>
  5662. <td>
  5663. <em>(Optional)</em>
  5664. <p>DataFrom is used to fetch all properties from a specific Provider data
  5665. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  5666. </td>
  5667. </tr>
  5668. </tbody>
  5669. </table>
  5670. <h3 id="external-secrets.io/v1.ExternalSecretStatus">ExternalSecretStatus
  5671. </h3>
  5672. <p>
  5673. (<em>Appears on:</em>
  5674. <a href="#external-secrets.io/v1.ExternalSecret">ExternalSecret</a>)
  5675. </p>
  5676. <p>
  5677. </p>
  5678. <table>
  5679. <thead>
  5680. <tr>
  5681. <th>Field</th>
  5682. <th>Description</th>
  5683. </tr>
  5684. </thead>
  5685. <tbody>
  5686. <tr>
  5687. <td>
  5688. <code>refreshTime</code></br>
  5689. <em>
  5690. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  5691. Kubernetes meta/v1.Time
  5692. </a>
  5693. </em>
  5694. </td>
  5695. <td>
  5696. <p>refreshTime is the time and date the external secret was fetched and
  5697. the target secret updated</p>
  5698. </td>
  5699. </tr>
  5700. <tr>
  5701. <td>
  5702. <code>syncedResourceVersion</code></br>
  5703. <em>
  5704. string
  5705. </em>
  5706. </td>
  5707. <td>
  5708. <p>SyncedResourceVersion keeps track of the last synced version</p>
  5709. </td>
  5710. </tr>
  5711. <tr>
  5712. <td>
  5713. <code>conditions</code></br>
  5714. <em>
  5715. <a href="#external-secrets.io/v1.ExternalSecretStatusCondition">
  5716. []ExternalSecretStatusCondition
  5717. </a>
  5718. </em>
  5719. </td>
  5720. <td>
  5721. <em>(Optional)</em>
  5722. </td>
  5723. </tr>
  5724. <tr>
  5725. <td>
  5726. <code>binding</code></br>
  5727. <em>
  5728. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#localobjectreference-v1-core">
  5729. Kubernetes core/v1.LocalObjectReference
  5730. </a>
  5731. </em>
  5732. </td>
  5733. <td>
  5734. <p>Binding represents a servicebinding.io Provisioned Service reference to the secret</p>
  5735. </td>
  5736. </tr>
  5737. </tbody>
  5738. </table>
  5739. <h3 id="external-secrets.io/v1.ExternalSecretStatusCondition">ExternalSecretStatusCondition
  5740. </h3>
  5741. <p>
  5742. (<em>Appears on:</em>
  5743. <a href="#external-secrets.io/v1.ExternalSecretStatus">ExternalSecretStatus</a>)
  5744. </p>
  5745. <p>
  5746. </p>
  5747. <table>
  5748. <thead>
  5749. <tr>
  5750. <th>Field</th>
  5751. <th>Description</th>
  5752. </tr>
  5753. </thead>
  5754. <tbody>
  5755. <tr>
  5756. <td>
  5757. <code>type</code></br>
  5758. <em>
  5759. <a href="#external-secrets.io/v1.ExternalSecretConditionType">
  5760. ExternalSecretConditionType
  5761. </a>
  5762. </em>
  5763. </td>
  5764. <td>
  5765. </td>
  5766. </tr>
  5767. <tr>
  5768. <td>
  5769. <code>status</code></br>
  5770. <em>
  5771. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  5772. Kubernetes core/v1.ConditionStatus
  5773. </a>
  5774. </em>
  5775. </td>
  5776. <td>
  5777. </td>
  5778. </tr>
  5779. <tr>
  5780. <td>
  5781. <code>reason</code></br>
  5782. <em>
  5783. string
  5784. </em>
  5785. </td>
  5786. <td>
  5787. <em>(Optional)</em>
  5788. </td>
  5789. </tr>
  5790. <tr>
  5791. <td>
  5792. <code>message</code></br>
  5793. <em>
  5794. string
  5795. </em>
  5796. </td>
  5797. <td>
  5798. <em>(Optional)</em>
  5799. </td>
  5800. </tr>
  5801. <tr>
  5802. <td>
  5803. <code>lastTransitionTime</code></br>
  5804. <em>
  5805. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  5806. Kubernetes meta/v1.Time
  5807. </a>
  5808. </em>
  5809. </td>
  5810. <td>
  5811. <em>(Optional)</em>
  5812. </td>
  5813. </tr>
  5814. </tbody>
  5815. </table>
  5816. <h3 id="external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget
  5817. </h3>
  5818. <p>
  5819. (<em>Appears on:</em>
  5820. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  5821. </p>
  5822. <p>
  5823. <p>ExternalSecretTarget defines the Kubernetes Secret to be created
  5824. There can be only one target per ExternalSecret.</p>
  5825. </p>
  5826. <table>
  5827. <thead>
  5828. <tr>
  5829. <th>Field</th>
  5830. <th>Description</th>
  5831. </tr>
  5832. </thead>
  5833. <tbody>
  5834. <tr>
  5835. <td>
  5836. <code>name</code></br>
  5837. <em>
  5838. string
  5839. </em>
  5840. </td>
  5841. <td>
  5842. <em>(Optional)</em>
  5843. <p>The name of the Secret resource to be managed.
  5844. Defaults to the .metadata.name of the ExternalSecret resource</p>
  5845. </td>
  5846. </tr>
  5847. <tr>
  5848. <td>
  5849. <code>creationPolicy</code></br>
  5850. <em>
  5851. <a href="#external-secrets.io/v1.ExternalSecretCreationPolicy">
  5852. ExternalSecretCreationPolicy
  5853. </a>
  5854. </em>
  5855. </td>
  5856. <td>
  5857. <em>(Optional)</em>
  5858. <p>CreationPolicy defines rules on how to create the resulting Secret.
  5859. Defaults to &ldquo;Owner&rdquo;</p>
  5860. </td>
  5861. </tr>
  5862. <tr>
  5863. <td>
  5864. <code>deletionPolicy</code></br>
  5865. <em>
  5866. <a href="#external-secrets.io/v1.ExternalSecretDeletionPolicy">
  5867. ExternalSecretDeletionPolicy
  5868. </a>
  5869. </em>
  5870. </td>
  5871. <td>
  5872. <em>(Optional)</em>
  5873. <p>DeletionPolicy defines rules on how to delete the resulting Secret.
  5874. Defaults to &ldquo;Retain&rdquo;</p>
  5875. </td>
  5876. </tr>
  5877. <tr>
  5878. <td>
  5879. <code>template</code></br>
  5880. <em>
  5881. <a href="#external-secrets.io/v1.ExternalSecretTemplate">
  5882. ExternalSecretTemplate
  5883. </a>
  5884. </em>
  5885. </td>
  5886. <td>
  5887. <em>(Optional)</em>
  5888. <p>Template defines a blueprint for the created Secret resource.</p>
  5889. </td>
  5890. </tr>
  5891. <tr>
  5892. <td>
  5893. <code>immutable</code></br>
  5894. <em>
  5895. bool
  5896. </em>
  5897. </td>
  5898. <td>
  5899. <em>(Optional)</em>
  5900. <p>Immutable defines if the final secret will be immutable</p>
  5901. </td>
  5902. </tr>
  5903. </tbody>
  5904. </table>
  5905. <h3 id="external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate
  5906. </h3>
  5907. <p>
  5908. (<em>Appears on:</em>
  5909. <a href="#external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget</a>)
  5910. </p>
  5911. <p>
  5912. <p>ExternalSecretTemplate defines a blueprint for the created Secret resource.
  5913. we can not use native corev1.Secret, it will have empty ObjectMeta values: <a href="https://github.com/kubernetes-sigs/controller-tools/issues/448">https://github.com/kubernetes-sigs/controller-tools/issues/448</a></p>
  5914. </p>
  5915. <table>
  5916. <thead>
  5917. <tr>
  5918. <th>Field</th>
  5919. <th>Description</th>
  5920. </tr>
  5921. </thead>
  5922. <tbody>
  5923. <tr>
  5924. <td>
  5925. <code>type</code></br>
  5926. <em>
  5927. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#secrettype-v1-core">
  5928. Kubernetes core/v1.SecretType
  5929. </a>
  5930. </em>
  5931. </td>
  5932. <td>
  5933. <em>(Optional)</em>
  5934. </td>
  5935. </tr>
  5936. <tr>
  5937. <td>
  5938. <code>engineVersion</code></br>
  5939. <em>
  5940. <a href="#external-secrets.io/v1.TemplateEngineVersion">
  5941. TemplateEngineVersion
  5942. </a>
  5943. </em>
  5944. </td>
  5945. <td>
  5946. <p>EngineVersion specifies the template engine version
  5947. that should be used to compile/execute the
  5948. template specified in .data and .templateFrom[].</p>
  5949. </td>
  5950. </tr>
  5951. <tr>
  5952. <td>
  5953. <code>metadata</code></br>
  5954. <em>
  5955. <a href="#external-secrets.io/v1.ExternalSecretTemplateMetadata">
  5956. ExternalSecretTemplateMetadata
  5957. </a>
  5958. </em>
  5959. </td>
  5960. <td>
  5961. <em>(Optional)</em>
  5962. </td>
  5963. </tr>
  5964. <tr>
  5965. <td>
  5966. <code>mergePolicy</code></br>
  5967. <em>
  5968. <a href="#external-secrets.io/v1.TemplateMergePolicy">
  5969. TemplateMergePolicy
  5970. </a>
  5971. </em>
  5972. </td>
  5973. <td>
  5974. </td>
  5975. </tr>
  5976. <tr>
  5977. <td>
  5978. <code>data</code></br>
  5979. <em>
  5980. map[string]string
  5981. </em>
  5982. </td>
  5983. <td>
  5984. <em>(Optional)</em>
  5985. </td>
  5986. </tr>
  5987. <tr>
  5988. <td>
  5989. <code>templateFrom</code></br>
  5990. <em>
  5991. <a href="#external-secrets.io/v1.TemplateFrom">
  5992. []TemplateFrom
  5993. </a>
  5994. </em>
  5995. </td>
  5996. <td>
  5997. <em>(Optional)</em>
  5998. </td>
  5999. </tr>
  6000. </tbody>
  6001. </table>
  6002. <h3 id="external-secrets.io/v1.ExternalSecretTemplateMetadata">ExternalSecretTemplateMetadata
  6003. </h3>
  6004. <p>
  6005. (<em>Appears on:</em>
  6006. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  6007. </p>
  6008. <p>
  6009. <p>ExternalSecretTemplateMetadata defines metadata fields for the Secret blueprint.</p>
  6010. </p>
  6011. <table>
  6012. <thead>
  6013. <tr>
  6014. <th>Field</th>
  6015. <th>Description</th>
  6016. </tr>
  6017. </thead>
  6018. <tbody>
  6019. <tr>
  6020. <td>
  6021. <code>annotations</code></br>
  6022. <em>
  6023. map[string]string
  6024. </em>
  6025. </td>
  6026. <td>
  6027. <em>(Optional)</em>
  6028. </td>
  6029. </tr>
  6030. <tr>
  6031. <td>
  6032. <code>labels</code></br>
  6033. <em>
  6034. map[string]string
  6035. </em>
  6036. </td>
  6037. <td>
  6038. <em>(Optional)</em>
  6039. </td>
  6040. </tr>
  6041. <tr>
  6042. <td>
  6043. <code>finalizers</code></br>
  6044. <em>
  6045. []string
  6046. </em>
  6047. </td>
  6048. <td>
  6049. <em>(Optional)</em>
  6050. </td>
  6051. </tr>
  6052. </tbody>
  6053. </table>
  6054. <h3 id="external-secrets.io/v1.ExternalSecretValidator">ExternalSecretValidator
  6055. </h3>
  6056. <p>
  6057. </p>
  6058. <h3 id="external-secrets.io/v1.FakeProvider">FakeProvider
  6059. </h3>
  6060. <p>
  6061. (<em>Appears on:</em>
  6062. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6063. </p>
  6064. <p>
  6065. <p>FakeProvider configures a fake provider that returns static values.</p>
  6066. </p>
  6067. <table>
  6068. <thead>
  6069. <tr>
  6070. <th>Field</th>
  6071. <th>Description</th>
  6072. </tr>
  6073. </thead>
  6074. <tbody>
  6075. <tr>
  6076. <td>
  6077. <code>data</code></br>
  6078. <em>
  6079. <a href="#external-secrets.io/v1.FakeProviderData">
  6080. []FakeProviderData
  6081. </a>
  6082. </em>
  6083. </td>
  6084. <td>
  6085. </td>
  6086. </tr>
  6087. <tr>
  6088. <td>
  6089. <code>validationResult</code></br>
  6090. <em>
  6091. <a href="#external-secrets.io/v1.ValidationResult">
  6092. ValidationResult
  6093. </a>
  6094. </em>
  6095. </td>
  6096. <td>
  6097. </td>
  6098. </tr>
  6099. </tbody>
  6100. </table>
  6101. <h3 id="external-secrets.io/v1.FakeProviderData">FakeProviderData
  6102. </h3>
  6103. <p>
  6104. (<em>Appears on:</em>
  6105. <a href="#external-secrets.io/v1.FakeProvider">FakeProvider</a>)
  6106. </p>
  6107. <p>
  6108. </p>
  6109. <table>
  6110. <thead>
  6111. <tr>
  6112. <th>Field</th>
  6113. <th>Description</th>
  6114. </tr>
  6115. </thead>
  6116. <tbody>
  6117. <tr>
  6118. <td>
  6119. <code>key</code></br>
  6120. <em>
  6121. string
  6122. </em>
  6123. </td>
  6124. <td>
  6125. </td>
  6126. </tr>
  6127. <tr>
  6128. <td>
  6129. <code>value</code></br>
  6130. <em>
  6131. string
  6132. </em>
  6133. </td>
  6134. <td>
  6135. </td>
  6136. </tr>
  6137. <tr>
  6138. <td>
  6139. <code>version</code></br>
  6140. <em>
  6141. string
  6142. </em>
  6143. </td>
  6144. <td>
  6145. </td>
  6146. </tr>
  6147. </tbody>
  6148. </table>
  6149. <h3 id="external-secrets.io/v1.FetchingPolicy">FetchingPolicy
  6150. </h3>
  6151. <p>
  6152. (<em>Appears on:</em>
  6153. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>,
  6154. <a href="#external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider</a>)
  6155. </p>
  6156. <p>
  6157. </p>
  6158. <table>
  6159. <thead>
  6160. <tr>
  6161. <th>Field</th>
  6162. <th>Description</th>
  6163. </tr>
  6164. </thead>
  6165. <tbody>
  6166. <tr>
  6167. <td>
  6168. <code>byID</code></br>
  6169. <em>
  6170. <a href="#external-secrets.io/v1.ByID">
  6171. ByID
  6172. </a>
  6173. </em>
  6174. </td>
  6175. <td>
  6176. </td>
  6177. </tr>
  6178. <tr>
  6179. <td>
  6180. <code>byName</code></br>
  6181. <em>
  6182. <a href="#external-secrets.io/v1.ByName">
  6183. ByName
  6184. </a>
  6185. </em>
  6186. </td>
  6187. <td>
  6188. </td>
  6189. </tr>
  6190. </tbody>
  6191. </table>
  6192. <h3 id="external-secrets.io/v1.FindName">FindName
  6193. </h3>
  6194. <p>
  6195. (<em>Appears on:</em>
  6196. <a href="#external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind</a>)
  6197. </p>
  6198. <p>
  6199. </p>
  6200. <table>
  6201. <thead>
  6202. <tr>
  6203. <th>Field</th>
  6204. <th>Description</th>
  6205. </tr>
  6206. </thead>
  6207. <tbody>
  6208. <tr>
  6209. <td>
  6210. <code>regexp</code></br>
  6211. <em>
  6212. string
  6213. </em>
  6214. </td>
  6215. <td>
  6216. <em>(Optional)</em>
  6217. <p>Finds secrets base</p>
  6218. </td>
  6219. </tr>
  6220. </tbody>
  6221. </table>
  6222. <h3 id="external-secrets.io/v1.FortanixProvider">FortanixProvider
  6223. </h3>
  6224. <p>
  6225. (<em>Appears on:</em>
  6226. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6227. </p>
  6228. <p>
  6229. </p>
  6230. <table>
  6231. <thead>
  6232. <tr>
  6233. <th>Field</th>
  6234. <th>Description</th>
  6235. </tr>
  6236. </thead>
  6237. <tbody>
  6238. <tr>
  6239. <td>
  6240. <code>apiUrl</code></br>
  6241. <em>
  6242. string
  6243. </em>
  6244. </td>
  6245. <td>
  6246. <p>APIURL is the URL of SDKMS API. Defaults to <code>sdkms.fortanix.com</code>.</p>
  6247. </td>
  6248. </tr>
  6249. <tr>
  6250. <td>
  6251. <code>apiKey</code></br>
  6252. <em>
  6253. <a href="#external-secrets.io/v1.FortanixProviderSecretRef">
  6254. FortanixProviderSecretRef
  6255. </a>
  6256. </em>
  6257. </td>
  6258. <td>
  6259. <p>APIKey is the API token to access SDKMS Applications.</p>
  6260. </td>
  6261. </tr>
  6262. </tbody>
  6263. </table>
  6264. <h3 id="external-secrets.io/v1.FortanixProviderSecretRef">FortanixProviderSecretRef
  6265. </h3>
  6266. <p>
  6267. (<em>Appears on:</em>
  6268. <a href="#external-secrets.io/v1.FortanixProvider">FortanixProvider</a>)
  6269. </p>
  6270. <p>
  6271. </p>
  6272. <table>
  6273. <thead>
  6274. <tr>
  6275. <th>Field</th>
  6276. <th>Description</th>
  6277. </tr>
  6278. </thead>
  6279. <tbody>
  6280. <tr>
  6281. <td>
  6282. <code>secretRef</code></br>
  6283. <em>
  6284. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6285. External Secrets meta/v1.SecretKeySelector
  6286. </a>
  6287. </em>
  6288. </td>
  6289. <td>
  6290. <p>SecretRef is a reference to a secret containing the SDKMS API Key.</p>
  6291. </td>
  6292. </tr>
  6293. </tbody>
  6294. </table>
  6295. <h3 id="external-secrets.io/v1.GCPSMAuth">GCPSMAuth
  6296. </h3>
  6297. <p>
  6298. (<em>Appears on:</em>
  6299. <a href="#external-secrets.io/v1.GCPSMProvider">GCPSMProvider</a>)
  6300. </p>
  6301. <p>
  6302. </p>
  6303. <table>
  6304. <thead>
  6305. <tr>
  6306. <th>Field</th>
  6307. <th>Description</th>
  6308. </tr>
  6309. </thead>
  6310. <tbody>
  6311. <tr>
  6312. <td>
  6313. <code>secretRef</code></br>
  6314. <em>
  6315. <a href="#external-secrets.io/v1.GCPSMAuthSecretRef">
  6316. GCPSMAuthSecretRef
  6317. </a>
  6318. </em>
  6319. </td>
  6320. <td>
  6321. <em>(Optional)</em>
  6322. </td>
  6323. </tr>
  6324. <tr>
  6325. <td>
  6326. <code>workloadIdentity</code></br>
  6327. <em>
  6328. <a href="#external-secrets.io/v1.GCPWorkloadIdentity">
  6329. GCPWorkloadIdentity
  6330. </a>
  6331. </em>
  6332. </td>
  6333. <td>
  6334. <em>(Optional)</em>
  6335. </td>
  6336. </tr>
  6337. <tr>
  6338. <td>
  6339. <code>workloadIdentityFederation</code></br>
  6340. <em>
  6341. <a href="#external-secrets.io/v1.GCPWorkloadIdentityFederation">
  6342. GCPWorkloadIdentityFederation
  6343. </a>
  6344. </em>
  6345. </td>
  6346. <td>
  6347. <em>(Optional)</em>
  6348. </td>
  6349. </tr>
  6350. </tbody>
  6351. </table>
  6352. <h3 id="external-secrets.io/v1.GCPSMAuthSecretRef">GCPSMAuthSecretRef
  6353. </h3>
  6354. <p>
  6355. (<em>Appears on:</em>
  6356. <a href="#external-secrets.io/v1.GCPSMAuth">GCPSMAuth</a>)
  6357. </p>
  6358. <p>
  6359. </p>
  6360. <table>
  6361. <thead>
  6362. <tr>
  6363. <th>Field</th>
  6364. <th>Description</th>
  6365. </tr>
  6366. </thead>
  6367. <tbody>
  6368. <tr>
  6369. <td>
  6370. <code>secretAccessKeySecretRef</code></br>
  6371. <em>
  6372. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6373. External Secrets meta/v1.SecretKeySelector
  6374. </a>
  6375. </em>
  6376. </td>
  6377. <td>
  6378. <em>(Optional)</em>
  6379. <p>The SecretAccessKey is used for authentication</p>
  6380. </td>
  6381. </tr>
  6382. </tbody>
  6383. </table>
  6384. <h3 id="external-secrets.io/v1.GCPSMProvider">GCPSMProvider
  6385. </h3>
  6386. <p>
  6387. (<em>Appears on:</em>
  6388. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6389. </p>
  6390. <p>
  6391. <p>GCPSMProvider Configures a store to sync secrets using the GCP Secret Manager provider.</p>
  6392. </p>
  6393. <table>
  6394. <thead>
  6395. <tr>
  6396. <th>Field</th>
  6397. <th>Description</th>
  6398. </tr>
  6399. </thead>
  6400. <tbody>
  6401. <tr>
  6402. <td>
  6403. <code>auth</code></br>
  6404. <em>
  6405. <a href="#external-secrets.io/v1.GCPSMAuth">
  6406. GCPSMAuth
  6407. </a>
  6408. </em>
  6409. </td>
  6410. <td>
  6411. <em>(Optional)</em>
  6412. <p>Auth defines the information necessary to authenticate against GCP</p>
  6413. </td>
  6414. </tr>
  6415. <tr>
  6416. <td>
  6417. <code>projectID</code></br>
  6418. <em>
  6419. string
  6420. </em>
  6421. </td>
  6422. <td>
  6423. <p>ProjectID project where secret is located</p>
  6424. </td>
  6425. </tr>
  6426. <tr>
  6427. <td>
  6428. <code>location</code></br>
  6429. <em>
  6430. string
  6431. </em>
  6432. </td>
  6433. <td>
  6434. <p>Location optionally defines a location for a secret</p>
  6435. </td>
  6436. </tr>
  6437. </tbody>
  6438. </table>
  6439. <h3 id="external-secrets.io/v1.GCPWorkloadIdentity">GCPWorkloadIdentity
  6440. </h3>
  6441. <p>
  6442. (<em>Appears on:</em>
  6443. <a href="#external-secrets.io/v1.GCPSMAuth">GCPSMAuth</a>)
  6444. </p>
  6445. <p>
  6446. </p>
  6447. <table>
  6448. <thead>
  6449. <tr>
  6450. <th>Field</th>
  6451. <th>Description</th>
  6452. </tr>
  6453. </thead>
  6454. <tbody>
  6455. <tr>
  6456. <td>
  6457. <code>serviceAccountRef</code></br>
  6458. <em>
  6459. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  6460. External Secrets meta/v1.ServiceAccountSelector
  6461. </a>
  6462. </em>
  6463. </td>
  6464. <td>
  6465. </td>
  6466. </tr>
  6467. <tr>
  6468. <td>
  6469. <code>clusterLocation</code></br>
  6470. <em>
  6471. string
  6472. </em>
  6473. </td>
  6474. <td>
  6475. <em>(Optional)</em>
  6476. <p>ClusterLocation is the location of the cluster
  6477. If not specified, it fetches information from the metadata server</p>
  6478. </td>
  6479. </tr>
  6480. <tr>
  6481. <td>
  6482. <code>clusterName</code></br>
  6483. <em>
  6484. string
  6485. </em>
  6486. </td>
  6487. <td>
  6488. <em>(Optional)</em>
  6489. <p>ClusterName is the name of the cluster
  6490. If not specified, it fetches information from the metadata server</p>
  6491. </td>
  6492. </tr>
  6493. <tr>
  6494. <td>
  6495. <code>clusterProjectID</code></br>
  6496. <em>
  6497. string
  6498. </em>
  6499. </td>
  6500. <td>
  6501. <em>(Optional)</em>
  6502. <p>ClusterProjectID is the project ID of the cluster
  6503. If not specified, it fetches information from the metadata server</p>
  6504. </td>
  6505. </tr>
  6506. </tbody>
  6507. </table>
  6508. <h3 id="external-secrets.io/v1.GCPWorkloadIdentityFederation">GCPWorkloadIdentityFederation
  6509. </h3>
  6510. <p>
  6511. (<em>Appears on:</em>
  6512. <a href="#external-secrets.io/v1.GCPSMAuth">GCPSMAuth</a>)
  6513. </p>
  6514. <p>
  6515. <p>GCPWorkloadIdentityFederation holds the configurations required for generating federated access tokens.</p>
  6516. </p>
  6517. <table>
  6518. <thead>
  6519. <tr>
  6520. <th>Field</th>
  6521. <th>Description</th>
  6522. </tr>
  6523. </thead>
  6524. <tbody>
  6525. <tr>
  6526. <td>
  6527. <code>credConfig</code></br>
  6528. <em>
  6529. <a href="#external-secrets.io/v1.ConfigMapReference">
  6530. ConfigMapReference
  6531. </a>
  6532. </em>
  6533. </td>
  6534. <td>
  6535. <p>credConfig holds the configmap reference containing the GCP external account credential configuration in JSON format and the key name containing the json data.
  6536. For using Kubernetes cluster as the identity provider, use serviceAccountRef instead. Operators mounted serviceaccount token cannot be used as the token source, instead
  6537. serviceAccountRef must be used by providing operators service account details.</p>
  6538. </td>
  6539. </tr>
  6540. <tr>
  6541. <td>
  6542. <code>serviceAccountRef</code></br>
  6543. <em>
  6544. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  6545. External Secrets meta/v1.ServiceAccountSelector
  6546. </a>
  6547. </em>
  6548. </td>
  6549. <td>
  6550. <p>serviceAccountRef is the reference to the kubernetes ServiceAccount to be used for obtaining the tokens,
  6551. when Kubernetes is configured as provider in workload identity pool.</p>
  6552. </td>
  6553. </tr>
  6554. <tr>
  6555. <td>
  6556. <code>awsSecurityCredentials</code></br>
  6557. <em>
  6558. <a href="#external-secrets.io/v1.AwsCredentialsConfig">
  6559. AwsCredentialsConfig
  6560. </a>
  6561. </em>
  6562. </td>
  6563. <td>
  6564. <p>awsSecurityCredentials is for configuring AWS region and credentials to use for obtaining the access token,
  6565. when using the AWS metadata server is not an option.</p>
  6566. </td>
  6567. </tr>
  6568. <tr>
  6569. <td>
  6570. <code>audience</code></br>
  6571. <em>
  6572. string
  6573. </em>
  6574. </td>
  6575. <td>
  6576. <p>audience is the Secure Token Service (STS) audience which contains the resource name for the workload identity pool and the provider identifier in that pool.
  6577. If specified, Audience found in the external account credential config will be overridden with the configured value.
  6578. audience must be provided when serviceAccountRef or awsSecurityCredentials is configured.</p>
  6579. </td>
  6580. </tr>
  6581. <tr>
  6582. <td>
  6583. <code>externalTokenEndpoint</code></br>
  6584. <em>
  6585. string
  6586. </em>
  6587. </td>
  6588. <td>
  6589. <p>externalTokenEndpoint is the endpoint explicitly set up to provide tokens, which will be matched against the
  6590. credential_source.url in the provided credConfig. This field is merely to double-check the external token source
  6591. URL is having the expected value.</p>
  6592. </td>
  6593. </tr>
  6594. </tbody>
  6595. </table>
  6596. <h3 id="external-secrets.io/v1.GcpIamAuthCredentials">GcpIamAuthCredentials
  6597. </h3>
  6598. <p>
  6599. (<em>Appears on:</em>
  6600. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  6601. </p>
  6602. <p>
  6603. </p>
  6604. <table>
  6605. <thead>
  6606. <tr>
  6607. <th>Field</th>
  6608. <th>Description</th>
  6609. </tr>
  6610. </thead>
  6611. <tbody>
  6612. <tr>
  6613. <td>
  6614. <code>identityId</code></br>
  6615. <em>
  6616. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6617. External Secrets meta/v1.SecretKeySelector
  6618. </a>
  6619. </em>
  6620. </td>
  6621. <td>
  6622. </td>
  6623. </tr>
  6624. <tr>
  6625. <td>
  6626. <code>serviceAccountKeyFilePath</code></br>
  6627. <em>
  6628. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6629. External Secrets meta/v1.SecretKeySelector
  6630. </a>
  6631. </em>
  6632. </td>
  6633. <td>
  6634. </td>
  6635. </tr>
  6636. </tbody>
  6637. </table>
  6638. <h3 id="external-secrets.io/v1.GcpIdTokenAuthCredentials">GcpIdTokenAuthCredentials
  6639. </h3>
  6640. <p>
  6641. (<em>Appears on:</em>
  6642. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  6643. </p>
  6644. <p>
  6645. </p>
  6646. <table>
  6647. <thead>
  6648. <tr>
  6649. <th>Field</th>
  6650. <th>Description</th>
  6651. </tr>
  6652. </thead>
  6653. <tbody>
  6654. <tr>
  6655. <td>
  6656. <code>identityId</code></br>
  6657. <em>
  6658. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6659. External Secrets meta/v1.SecretKeySelector
  6660. </a>
  6661. </em>
  6662. </td>
  6663. <td>
  6664. </td>
  6665. </tr>
  6666. </tbody>
  6667. </table>
  6668. <h3 id="external-secrets.io/v1.GeneratorRef">GeneratorRef
  6669. </h3>
  6670. <p>
  6671. (<em>Appears on:</em>
  6672. <a href="#external-secrets.io/v1.StoreGeneratorSourceRef">StoreGeneratorSourceRef</a>,
  6673. <a href="#external-secrets.io/v1.StoreSourceRef">StoreSourceRef</a>)
  6674. </p>
  6675. <p>
  6676. <p>GeneratorRef points to a generator custom resource.</p>
  6677. </p>
  6678. <table>
  6679. <thead>
  6680. <tr>
  6681. <th>Field</th>
  6682. <th>Description</th>
  6683. </tr>
  6684. </thead>
  6685. <tbody>
  6686. <tr>
  6687. <td>
  6688. <code>apiVersion</code></br>
  6689. <em>
  6690. string
  6691. </em>
  6692. </td>
  6693. <td>
  6694. <p>Specify the apiVersion of the generator resource</p>
  6695. </td>
  6696. </tr>
  6697. <tr>
  6698. <td>
  6699. <code>kind</code></br>
  6700. <em>
  6701. string
  6702. </em>
  6703. </td>
  6704. <td>
  6705. <p>Specify the Kind of the generator resource</p>
  6706. </td>
  6707. </tr>
  6708. <tr>
  6709. <td>
  6710. <code>name</code></br>
  6711. <em>
  6712. string
  6713. </em>
  6714. </td>
  6715. <td>
  6716. <p>Specify the name of the generator resource</p>
  6717. </td>
  6718. </tr>
  6719. </tbody>
  6720. </table>
  6721. <h3 id="external-secrets.io/v1.GenericStore">GenericStore
  6722. </h3>
  6723. <p>
  6724. <p>GenericStore is a common interface for interacting with ClusterSecretStore
  6725. or a namespaced SecretStore.</p>
  6726. </p>
  6727. <h3 id="external-secrets.io/v1.GenericStoreValidator">GenericStoreValidator
  6728. </h3>
  6729. <p>
  6730. </p>
  6731. <h3 id="external-secrets.io/v1.GithubAppAuth">GithubAppAuth
  6732. </h3>
  6733. <p>
  6734. (<em>Appears on:</em>
  6735. <a href="#external-secrets.io/v1.GithubProvider">GithubProvider</a>)
  6736. </p>
  6737. <p>
  6738. </p>
  6739. <table>
  6740. <thead>
  6741. <tr>
  6742. <th>Field</th>
  6743. <th>Description</th>
  6744. </tr>
  6745. </thead>
  6746. <tbody>
  6747. <tr>
  6748. <td>
  6749. <code>privateKey</code></br>
  6750. <em>
  6751. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6752. External Secrets meta/v1.SecretKeySelector
  6753. </a>
  6754. </em>
  6755. </td>
  6756. <td>
  6757. </td>
  6758. </tr>
  6759. </tbody>
  6760. </table>
  6761. <h3 id="external-secrets.io/v1.GithubProvider">GithubProvider
  6762. </h3>
  6763. <p>
  6764. (<em>Appears on:</em>
  6765. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6766. </p>
  6767. <p>
  6768. <p>Configures a store to push secrets to Github Actions.</p>
  6769. </p>
  6770. <table>
  6771. <thead>
  6772. <tr>
  6773. <th>Field</th>
  6774. <th>Description</th>
  6775. </tr>
  6776. </thead>
  6777. <tbody>
  6778. <tr>
  6779. <td>
  6780. <code>url</code></br>
  6781. <em>
  6782. string
  6783. </em>
  6784. </td>
  6785. <td>
  6786. <p>URL configures the Github instance URL. Defaults to <a href="https://github.com/">https://github.com/</a>.</p>
  6787. </td>
  6788. </tr>
  6789. <tr>
  6790. <td>
  6791. <code>uploadURL</code></br>
  6792. <em>
  6793. string
  6794. </em>
  6795. </td>
  6796. <td>
  6797. <em>(Optional)</em>
  6798. <p>Upload URL for enterprise instances. Default to URL.</p>
  6799. </td>
  6800. </tr>
  6801. <tr>
  6802. <td>
  6803. <code>auth</code></br>
  6804. <em>
  6805. <a href="#external-secrets.io/v1.GithubAppAuth">
  6806. GithubAppAuth
  6807. </a>
  6808. </em>
  6809. </td>
  6810. <td>
  6811. <p>auth configures how secret-manager authenticates with a Github instance.</p>
  6812. </td>
  6813. </tr>
  6814. <tr>
  6815. <td>
  6816. <code>appID</code></br>
  6817. <em>
  6818. int64
  6819. </em>
  6820. </td>
  6821. <td>
  6822. <p>appID specifies the Github APP that will be used to authenticate the client</p>
  6823. </td>
  6824. </tr>
  6825. <tr>
  6826. <td>
  6827. <code>installationID</code></br>
  6828. <em>
  6829. int64
  6830. </em>
  6831. </td>
  6832. <td>
  6833. <p>installationID specifies the Github APP installation that will be used to authenticate the client</p>
  6834. </td>
  6835. </tr>
  6836. <tr>
  6837. <td>
  6838. <code>organization</code></br>
  6839. <em>
  6840. string
  6841. </em>
  6842. </td>
  6843. <td>
  6844. <p>organization will be used to fetch secrets from the Github organization</p>
  6845. </td>
  6846. </tr>
  6847. <tr>
  6848. <td>
  6849. <code>repository</code></br>
  6850. <em>
  6851. string
  6852. </em>
  6853. </td>
  6854. <td>
  6855. <em>(Optional)</em>
  6856. <p>repository will be used to fetch secrets from the Github repository within an organization</p>
  6857. </td>
  6858. </tr>
  6859. <tr>
  6860. <td>
  6861. <code>environment</code></br>
  6862. <em>
  6863. string
  6864. </em>
  6865. </td>
  6866. <td>
  6867. <em>(Optional)</em>
  6868. <p>environment will be used to fetch secrets from a particular environment within a github repository</p>
  6869. </td>
  6870. </tr>
  6871. </tbody>
  6872. </table>
  6873. <h3 id="external-secrets.io/v1.GitlabAuth">GitlabAuth
  6874. </h3>
  6875. <p>
  6876. (<em>Appears on:</em>
  6877. <a href="#external-secrets.io/v1.GitlabProvider">GitlabProvider</a>)
  6878. </p>
  6879. <p>
  6880. </p>
  6881. <table>
  6882. <thead>
  6883. <tr>
  6884. <th>Field</th>
  6885. <th>Description</th>
  6886. </tr>
  6887. </thead>
  6888. <tbody>
  6889. <tr>
  6890. <td>
  6891. <code>SecretRef</code></br>
  6892. <em>
  6893. <a href="#external-secrets.io/v1.GitlabSecretRef">
  6894. GitlabSecretRef
  6895. </a>
  6896. </em>
  6897. </td>
  6898. <td>
  6899. </td>
  6900. </tr>
  6901. </tbody>
  6902. </table>
  6903. <h3 id="external-secrets.io/v1.GitlabProvider">GitlabProvider
  6904. </h3>
  6905. <p>
  6906. (<em>Appears on:</em>
  6907. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6908. </p>
  6909. <p>
  6910. <p>Configures a store to sync secrets with a GitLab instance.</p>
  6911. </p>
  6912. <table>
  6913. <thead>
  6914. <tr>
  6915. <th>Field</th>
  6916. <th>Description</th>
  6917. </tr>
  6918. </thead>
  6919. <tbody>
  6920. <tr>
  6921. <td>
  6922. <code>url</code></br>
  6923. <em>
  6924. string
  6925. </em>
  6926. </td>
  6927. <td>
  6928. <p>URL configures the GitLab instance URL. Defaults to <a href="https://gitlab.com/">https://gitlab.com/</a>.</p>
  6929. </td>
  6930. </tr>
  6931. <tr>
  6932. <td>
  6933. <code>auth</code></br>
  6934. <em>
  6935. <a href="#external-secrets.io/v1.GitlabAuth">
  6936. GitlabAuth
  6937. </a>
  6938. </em>
  6939. </td>
  6940. <td>
  6941. <p>Auth configures how secret-manager authenticates with a GitLab instance.</p>
  6942. </td>
  6943. </tr>
  6944. <tr>
  6945. <td>
  6946. <code>projectID</code></br>
  6947. <em>
  6948. string
  6949. </em>
  6950. </td>
  6951. <td>
  6952. <p>ProjectID specifies a project where secrets are located.</p>
  6953. </td>
  6954. </tr>
  6955. <tr>
  6956. <td>
  6957. <code>inheritFromGroups</code></br>
  6958. <em>
  6959. bool
  6960. </em>
  6961. </td>
  6962. <td>
  6963. <p>InheritFromGroups specifies whether parent groups should be discovered and checked for secrets.</p>
  6964. </td>
  6965. </tr>
  6966. <tr>
  6967. <td>
  6968. <code>groupIDs</code></br>
  6969. <em>
  6970. []string
  6971. </em>
  6972. </td>
  6973. <td>
  6974. <p>GroupIDs specify, which gitlab groups to pull secrets from. Group secrets are read from left to right followed by the project variables.</p>
  6975. </td>
  6976. </tr>
  6977. <tr>
  6978. <td>
  6979. <code>environment</code></br>
  6980. <em>
  6981. string
  6982. </em>
  6983. </td>
  6984. <td>
  6985. <p>Environment environment_scope of gitlab CI/CD variables (Please see <a href="https://docs.gitlab.com/ee/ci/environments/#create-a-static-environment">https://docs.gitlab.com/ee/ci/environments/#create-a-static-environment</a> on how to create environments)</p>
  6986. </td>
  6987. </tr>
  6988. <tr>
  6989. <td>
  6990. <code>caBundle</code></br>
  6991. <em>
  6992. []byte
  6993. </em>
  6994. </td>
  6995. <td>
  6996. <em>(Optional)</em>
  6997. <p>Base64 encoded certificate for the GitLab server sdk. The sdk MUST run with HTTPS to make sure no MITM attack
  6998. can be performed.</p>
  6999. </td>
  7000. </tr>
  7001. <tr>
  7002. <td>
  7003. <code>caProvider</code></br>
  7004. <em>
  7005. <a href="#external-secrets.io/v1.CAProvider">
  7006. CAProvider
  7007. </a>
  7008. </em>
  7009. </td>
  7010. <td>
  7011. <em>(Optional)</em>
  7012. <p>see: <a href="https://external-secrets.io/latest/spec/#external-secrets.io/v1alpha1.CAProvider">https://external-secrets.io/latest/spec/#external-secrets.io/v1alpha1.CAProvider</a></p>
  7013. </td>
  7014. </tr>
  7015. </tbody>
  7016. </table>
  7017. <h3 id="external-secrets.io/v1.GitlabSecretRef">GitlabSecretRef
  7018. </h3>
  7019. <p>
  7020. (<em>Appears on:</em>
  7021. <a href="#external-secrets.io/v1.GitlabAuth">GitlabAuth</a>)
  7022. </p>
  7023. <p>
  7024. </p>
  7025. <table>
  7026. <thead>
  7027. <tr>
  7028. <th>Field</th>
  7029. <th>Description</th>
  7030. </tr>
  7031. </thead>
  7032. <tbody>
  7033. <tr>
  7034. <td>
  7035. <code>accessToken</code></br>
  7036. <em>
  7037. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7038. External Secrets meta/v1.SecretKeySelector
  7039. </a>
  7040. </em>
  7041. </td>
  7042. <td>
  7043. <p>AccessToken is used for authentication.</p>
  7044. </td>
  7045. </tr>
  7046. </tbody>
  7047. </table>
  7048. <h3 id="external-secrets.io/v1.IBMAuth">IBMAuth
  7049. </h3>
  7050. <p>
  7051. (<em>Appears on:</em>
  7052. <a href="#external-secrets.io/v1.IBMProvider">IBMProvider</a>)
  7053. </p>
  7054. <p>
  7055. </p>
  7056. <table>
  7057. <thead>
  7058. <tr>
  7059. <th>Field</th>
  7060. <th>Description</th>
  7061. </tr>
  7062. </thead>
  7063. <tbody>
  7064. <tr>
  7065. <td>
  7066. <code>secretRef</code></br>
  7067. <em>
  7068. <a href="#external-secrets.io/v1.IBMAuthSecretRef">
  7069. IBMAuthSecretRef
  7070. </a>
  7071. </em>
  7072. </td>
  7073. <td>
  7074. </td>
  7075. </tr>
  7076. <tr>
  7077. <td>
  7078. <code>containerAuth</code></br>
  7079. <em>
  7080. <a href="#external-secrets.io/v1.IBMAuthContainerAuth">
  7081. IBMAuthContainerAuth
  7082. </a>
  7083. </em>
  7084. </td>
  7085. <td>
  7086. </td>
  7087. </tr>
  7088. </tbody>
  7089. </table>
  7090. <h3 id="external-secrets.io/v1.IBMAuthContainerAuth">IBMAuthContainerAuth
  7091. </h3>
  7092. <p>
  7093. (<em>Appears on:</em>
  7094. <a href="#external-secrets.io/v1.IBMAuth">IBMAuth</a>)
  7095. </p>
  7096. <p>
  7097. <p>IBM Container-based auth with IAM Trusted Profile.</p>
  7098. </p>
  7099. <table>
  7100. <thead>
  7101. <tr>
  7102. <th>Field</th>
  7103. <th>Description</th>
  7104. </tr>
  7105. </thead>
  7106. <tbody>
  7107. <tr>
  7108. <td>
  7109. <code>profile</code></br>
  7110. <em>
  7111. string
  7112. </em>
  7113. </td>
  7114. <td>
  7115. <p>the IBM Trusted Profile</p>
  7116. </td>
  7117. </tr>
  7118. <tr>
  7119. <td>
  7120. <code>tokenLocation</code></br>
  7121. <em>
  7122. string
  7123. </em>
  7124. </td>
  7125. <td>
  7126. <p>Location the token is mounted on the pod</p>
  7127. </td>
  7128. </tr>
  7129. <tr>
  7130. <td>
  7131. <code>iamEndpoint</code></br>
  7132. <em>
  7133. string
  7134. </em>
  7135. </td>
  7136. <td>
  7137. </td>
  7138. </tr>
  7139. </tbody>
  7140. </table>
  7141. <h3 id="external-secrets.io/v1.IBMAuthSecretRef">IBMAuthSecretRef
  7142. </h3>
  7143. <p>
  7144. (<em>Appears on:</em>
  7145. <a href="#external-secrets.io/v1.IBMAuth">IBMAuth</a>)
  7146. </p>
  7147. <p>
  7148. </p>
  7149. <table>
  7150. <thead>
  7151. <tr>
  7152. <th>Field</th>
  7153. <th>Description</th>
  7154. </tr>
  7155. </thead>
  7156. <tbody>
  7157. <tr>
  7158. <td>
  7159. <code>secretApiKeySecretRef</code></br>
  7160. <em>
  7161. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7162. External Secrets meta/v1.SecretKeySelector
  7163. </a>
  7164. </em>
  7165. </td>
  7166. <td>
  7167. <p>The SecretAccessKey is used for authentication</p>
  7168. </td>
  7169. </tr>
  7170. </tbody>
  7171. </table>
  7172. <h3 id="external-secrets.io/v1.IBMProvider">IBMProvider
  7173. </h3>
  7174. <p>
  7175. (<em>Appears on:</em>
  7176. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7177. </p>
  7178. <p>
  7179. <p>Configures an store to sync secrets using a IBM Cloud Secrets Manager
  7180. backend.</p>
  7181. </p>
  7182. <table>
  7183. <thead>
  7184. <tr>
  7185. <th>Field</th>
  7186. <th>Description</th>
  7187. </tr>
  7188. </thead>
  7189. <tbody>
  7190. <tr>
  7191. <td>
  7192. <code>auth</code></br>
  7193. <em>
  7194. <a href="#external-secrets.io/v1.IBMAuth">
  7195. IBMAuth
  7196. </a>
  7197. </em>
  7198. </td>
  7199. <td>
  7200. <p>Auth configures how secret-manager authenticates with the IBM secrets manager.</p>
  7201. </td>
  7202. </tr>
  7203. <tr>
  7204. <td>
  7205. <code>serviceUrl</code></br>
  7206. <em>
  7207. string
  7208. </em>
  7209. </td>
  7210. <td>
  7211. <p>ServiceURL is the Endpoint URL that is specific to the Secrets Manager service instance</p>
  7212. </td>
  7213. </tr>
  7214. </tbody>
  7215. </table>
  7216. <h3 id="external-secrets.io/v1.InfisicalAuth">InfisicalAuth
  7217. </h3>
  7218. <p>
  7219. (<em>Appears on:</em>
  7220. <a href="#external-secrets.io/v1.InfisicalProvider">InfisicalProvider</a>)
  7221. </p>
  7222. <p>
  7223. </p>
  7224. <table>
  7225. <thead>
  7226. <tr>
  7227. <th>Field</th>
  7228. <th>Description</th>
  7229. </tr>
  7230. </thead>
  7231. <tbody>
  7232. <tr>
  7233. <td>
  7234. <code>universalAuthCredentials</code></br>
  7235. <em>
  7236. <a href="#external-secrets.io/v1.UniversalAuthCredentials">
  7237. UniversalAuthCredentials
  7238. </a>
  7239. </em>
  7240. </td>
  7241. <td>
  7242. <em>(Optional)</em>
  7243. </td>
  7244. </tr>
  7245. <tr>
  7246. <td>
  7247. <code>azureAuthCredentials</code></br>
  7248. <em>
  7249. <a href="#external-secrets.io/v1.AzureAuthCredentials">
  7250. AzureAuthCredentials
  7251. </a>
  7252. </em>
  7253. </td>
  7254. <td>
  7255. <em>(Optional)</em>
  7256. </td>
  7257. </tr>
  7258. <tr>
  7259. <td>
  7260. <code>gcpIdTokenAuthCredentials</code></br>
  7261. <em>
  7262. <a href="#external-secrets.io/v1.GcpIdTokenAuthCredentials">
  7263. GcpIdTokenAuthCredentials
  7264. </a>
  7265. </em>
  7266. </td>
  7267. <td>
  7268. <em>(Optional)</em>
  7269. </td>
  7270. </tr>
  7271. <tr>
  7272. <td>
  7273. <code>gcpIamAuthCredentials</code></br>
  7274. <em>
  7275. <a href="#external-secrets.io/v1.GcpIamAuthCredentials">
  7276. GcpIamAuthCredentials
  7277. </a>
  7278. </em>
  7279. </td>
  7280. <td>
  7281. <em>(Optional)</em>
  7282. </td>
  7283. </tr>
  7284. <tr>
  7285. <td>
  7286. <code>jwtAuthCredentials</code></br>
  7287. <em>
  7288. <a href="#external-secrets.io/v1.JwtAuthCredentials">
  7289. JwtAuthCredentials
  7290. </a>
  7291. </em>
  7292. </td>
  7293. <td>
  7294. <em>(Optional)</em>
  7295. </td>
  7296. </tr>
  7297. <tr>
  7298. <td>
  7299. <code>ldapAuthCredentials</code></br>
  7300. <em>
  7301. <a href="#external-secrets.io/v1.LdapAuthCredentials">
  7302. LdapAuthCredentials
  7303. </a>
  7304. </em>
  7305. </td>
  7306. <td>
  7307. <em>(Optional)</em>
  7308. </td>
  7309. </tr>
  7310. <tr>
  7311. <td>
  7312. <code>ociAuthCredentials</code></br>
  7313. <em>
  7314. <a href="#external-secrets.io/v1.OciAuthCredentials">
  7315. OciAuthCredentials
  7316. </a>
  7317. </em>
  7318. </td>
  7319. <td>
  7320. <em>(Optional)</em>
  7321. </td>
  7322. </tr>
  7323. <tr>
  7324. <td>
  7325. <code>kubernetesAuthCredentials</code></br>
  7326. <em>
  7327. <a href="#external-secrets.io/v1.KubernetesAuthCredentials">
  7328. KubernetesAuthCredentials
  7329. </a>
  7330. </em>
  7331. </td>
  7332. <td>
  7333. <em>(Optional)</em>
  7334. </td>
  7335. </tr>
  7336. <tr>
  7337. <td>
  7338. <code>awsAuthCredentials</code></br>
  7339. <em>
  7340. <a href="#external-secrets.io/v1.AwsAuthCredentials">
  7341. AwsAuthCredentials
  7342. </a>
  7343. </em>
  7344. </td>
  7345. <td>
  7346. <em>(Optional)</em>
  7347. </td>
  7348. </tr>
  7349. <tr>
  7350. <td>
  7351. <code>tokenAuthCredentials</code></br>
  7352. <em>
  7353. <a href="#external-secrets.io/v1.TokenAuthCredentials">
  7354. TokenAuthCredentials
  7355. </a>
  7356. </em>
  7357. </td>
  7358. <td>
  7359. <em>(Optional)</em>
  7360. </td>
  7361. </tr>
  7362. </tbody>
  7363. </table>
  7364. <h3 id="external-secrets.io/v1.InfisicalProvider">InfisicalProvider
  7365. </h3>
  7366. <p>
  7367. (<em>Appears on:</em>
  7368. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7369. </p>
  7370. <p>
  7371. <p>InfisicalProvider configures a store to sync secrets using the Infisical provider.</p>
  7372. </p>
  7373. <table>
  7374. <thead>
  7375. <tr>
  7376. <th>Field</th>
  7377. <th>Description</th>
  7378. </tr>
  7379. </thead>
  7380. <tbody>
  7381. <tr>
  7382. <td>
  7383. <code>auth</code></br>
  7384. <em>
  7385. <a href="#external-secrets.io/v1.InfisicalAuth">
  7386. InfisicalAuth
  7387. </a>
  7388. </em>
  7389. </td>
  7390. <td>
  7391. <p>Auth configures how the Operator authenticates with the Infisical API</p>
  7392. </td>
  7393. </tr>
  7394. <tr>
  7395. <td>
  7396. <code>secretsScope</code></br>
  7397. <em>
  7398. <a href="#external-secrets.io/v1.MachineIdentityScopeInWorkspace">
  7399. MachineIdentityScopeInWorkspace
  7400. </a>
  7401. </em>
  7402. </td>
  7403. <td>
  7404. <p>SecretsScope defines the scope of the secrets within the workspace</p>
  7405. </td>
  7406. </tr>
  7407. <tr>
  7408. <td>
  7409. <code>hostAPI</code></br>
  7410. <em>
  7411. string
  7412. </em>
  7413. </td>
  7414. <td>
  7415. <em>(Optional)</em>
  7416. <p>HostAPI specifies the base URL of the Infisical API. If not provided, it defaults to &ldquo;<a href="https://app.infisical.com/api&quot;">https://app.infisical.com/api&rdquo;</a>.</p>
  7417. </td>
  7418. </tr>
  7419. </tbody>
  7420. </table>
  7421. <h3 id="external-secrets.io/v1.IntegrationInfo">IntegrationInfo
  7422. </h3>
  7423. <p>
  7424. (<em>Appears on:</em>
  7425. <a href="#external-secrets.io/v1.OnePasswordSDKProvider">OnePasswordSDKProvider</a>)
  7426. </p>
  7427. <p>
  7428. <p>IntegrationInfo specifies the name and version of the integration built using the 1Password Go SDK.</p>
  7429. </p>
  7430. <table>
  7431. <thead>
  7432. <tr>
  7433. <th>Field</th>
  7434. <th>Description</th>
  7435. </tr>
  7436. </thead>
  7437. <tbody>
  7438. <tr>
  7439. <td>
  7440. <code>name</code></br>
  7441. <em>
  7442. string
  7443. </em>
  7444. </td>
  7445. <td>
  7446. <p>Name defaults to &ldquo;1Password SDK&rdquo;.</p>
  7447. </td>
  7448. </tr>
  7449. <tr>
  7450. <td>
  7451. <code>version</code></br>
  7452. <em>
  7453. string
  7454. </em>
  7455. </td>
  7456. <td>
  7457. <p>Version defaults to &ldquo;v1.0.0&rdquo;.</p>
  7458. </td>
  7459. </tr>
  7460. </tbody>
  7461. </table>
  7462. <h3 id="external-secrets.io/v1.JwtAuthCredentials">JwtAuthCredentials
  7463. </h3>
  7464. <p>
  7465. (<em>Appears on:</em>
  7466. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  7467. </p>
  7468. <p>
  7469. </p>
  7470. <table>
  7471. <thead>
  7472. <tr>
  7473. <th>Field</th>
  7474. <th>Description</th>
  7475. </tr>
  7476. </thead>
  7477. <tbody>
  7478. <tr>
  7479. <td>
  7480. <code>identityId</code></br>
  7481. <em>
  7482. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7483. External Secrets meta/v1.SecretKeySelector
  7484. </a>
  7485. </em>
  7486. </td>
  7487. <td>
  7488. </td>
  7489. </tr>
  7490. <tr>
  7491. <td>
  7492. <code>jwt</code></br>
  7493. <em>
  7494. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7495. External Secrets meta/v1.SecretKeySelector
  7496. </a>
  7497. </em>
  7498. </td>
  7499. <td>
  7500. </td>
  7501. </tr>
  7502. </tbody>
  7503. </table>
  7504. <h3 id="external-secrets.io/v1.KeeperSecurityProvider">KeeperSecurityProvider
  7505. </h3>
  7506. <p>
  7507. (<em>Appears on:</em>
  7508. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7509. </p>
  7510. <p>
  7511. <p>KeeperSecurityProvider Configures a store to sync secrets using Keeper Security.</p>
  7512. </p>
  7513. <table>
  7514. <thead>
  7515. <tr>
  7516. <th>Field</th>
  7517. <th>Description</th>
  7518. </tr>
  7519. </thead>
  7520. <tbody>
  7521. <tr>
  7522. <td>
  7523. <code>authRef</code></br>
  7524. <em>
  7525. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7526. External Secrets meta/v1.SecretKeySelector
  7527. </a>
  7528. </em>
  7529. </td>
  7530. <td>
  7531. </td>
  7532. </tr>
  7533. <tr>
  7534. <td>
  7535. <code>folderID</code></br>
  7536. <em>
  7537. string
  7538. </em>
  7539. </td>
  7540. <td>
  7541. </td>
  7542. </tr>
  7543. </tbody>
  7544. </table>
  7545. <h3 id="external-secrets.io/v1.KubernetesAuth">KubernetesAuth
  7546. </h3>
  7547. <p>
  7548. (<em>Appears on:</em>
  7549. <a href="#external-secrets.io/v1.KubernetesProvider">KubernetesProvider</a>)
  7550. </p>
  7551. <p>
  7552. </p>
  7553. <table>
  7554. <thead>
  7555. <tr>
  7556. <th>Field</th>
  7557. <th>Description</th>
  7558. </tr>
  7559. </thead>
  7560. <tbody>
  7561. <tr>
  7562. <td>
  7563. <code>cert</code></br>
  7564. <em>
  7565. <a href="#external-secrets.io/v1.CertAuth">
  7566. CertAuth
  7567. </a>
  7568. </em>
  7569. </td>
  7570. <td>
  7571. <em>(Optional)</em>
  7572. <p>has both clientCert and clientKey as secretKeySelector</p>
  7573. </td>
  7574. </tr>
  7575. <tr>
  7576. <td>
  7577. <code>token</code></br>
  7578. <em>
  7579. <a href="#external-secrets.io/v1.TokenAuth">
  7580. TokenAuth
  7581. </a>
  7582. </em>
  7583. </td>
  7584. <td>
  7585. <em>(Optional)</em>
  7586. <p>use static token to authenticate with</p>
  7587. </td>
  7588. </tr>
  7589. <tr>
  7590. <td>
  7591. <code>serviceAccount</code></br>
  7592. <em>
  7593. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  7594. External Secrets meta/v1.ServiceAccountSelector
  7595. </a>
  7596. </em>
  7597. </td>
  7598. <td>
  7599. <em>(Optional)</em>
  7600. <p>points to a service account that should be used for authentication</p>
  7601. </td>
  7602. </tr>
  7603. </tbody>
  7604. </table>
  7605. <h3 id="external-secrets.io/v1.KubernetesAuthCredentials">KubernetesAuthCredentials
  7606. </h3>
  7607. <p>
  7608. (<em>Appears on:</em>
  7609. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  7610. </p>
  7611. <p>
  7612. </p>
  7613. <table>
  7614. <thead>
  7615. <tr>
  7616. <th>Field</th>
  7617. <th>Description</th>
  7618. </tr>
  7619. </thead>
  7620. <tbody>
  7621. <tr>
  7622. <td>
  7623. <code>identityId</code></br>
  7624. <em>
  7625. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7626. External Secrets meta/v1.SecretKeySelector
  7627. </a>
  7628. </em>
  7629. </td>
  7630. <td>
  7631. </td>
  7632. </tr>
  7633. <tr>
  7634. <td>
  7635. <code>serviceAccountTokenPath</code></br>
  7636. <em>
  7637. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7638. External Secrets meta/v1.SecretKeySelector
  7639. </a>
  7640. </em>
  7641. </td>
  7642. <td>
  7643. <em>(Optional)</em>
  7644. </td>
  7645. </tr>
  7646. </tbody>
  7647. </table>
  7648. <h3 id="external-secrets.io/v1.KubernetesProvider">KubernetesProvider
  7649. </h3>
  7650. <p>
  7651. (<em>Appears on:</em>
  7652. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7653. </p>
  7654. <p>
  7655. <p>Configures a store to sync secrets with a Kubernetes instance.</p>
  7656. </p>
  7657. <table>
  7658. <thead>
  7659. <tr>
  7660. <th>Field</th>
  7661. <th>Description</th>
  7662. </tr>
  7663. </thead>
  7664. <tbody>
  7665. <tr>
  7666. <td>
  7667. <code>server</code></br>
  7668. <em>
  7669. <a href="#external-secrets.io/v1.KubernetesServer">
  7670. KubernetesServer
  7671. </a>
  7672. </em>
  7673. </td>
  7674. <td>
  7675. <em>(Optional)</em>
  7676. <p>configures the Kubernetes server Address.</p>
  7677. </td>
  7678. </tr>
  7679. <tr>
  7680. <td>
  7681. <code>auth</code></br>
  7682. <em>
  7683. <a href="#external-secrets.io/v1.KubernetesAuth">
  7684. KubernetesAuth
  7685. </a>
  7686. </em>
  7687. </td>
  7688. <td>
  7689. <em>(Optional)</em>
  7690. <p>Auth configures how secret-manager authenticates with a Kubernetes instance.</p>
  7691. </td>
  7692. </tr>
  7693. <tr>
  7694. <td>
  7695. <code>authRef</code></br>
  7696. <em>
  7697. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7698. External Secrets meta/v1.SecretKeySelector
  7699. </a>
  7700. </em>
  7701. </td>
  7702. <td>
  7703. <em>(Optional)</em>
  7704. <p>A reference to a secret that contains the auth information.</p>
  7705. </td>
  7706. </tr>
  7707. <tr>
  7708. <td>
  7709. <code>remoteNamespace</code></br>
  7710. <em>
  7711. string
  7712. </em>
  7713. </td>
  7714. <td>
  7715. <em>(Optional)</em>
  7716. <p>Remote namespace to fetch the secrets from</p>
  7717. </td>
  7718. </tr>
  7719. </tbody>
  7720. </table>
  7721. <h3 id="external-secrets.io/v1.KubernetesServer">KubernetesServer
  7722. </h3>
  7723. <p>
  7724. (<em>Appears on:</em>
  7725. <a href="#external-secrets.io/v1.KubernetesProvider">KubernetesProvider</a>)
  7726. </p>
  7727. <p>
  7728. </p>
  7729. <table>
  7730. <thead>
  7731. <tr>
  7732. <th>Field</th>
  7733. <th>Description</th>
  7734. </tr>
  7735. </thead>
  7736. <tbody>
  7737. <tr>
  7738. <td>
  7739. <code>url</code></br>
  7740. <em>
  7741. string
  7742. </em>
  7743. </td>
  7744. <td>
  7745. <em>(Optional)</em>
  7746. <p>configures the Kubernetes server Address.</p>
  7747. </td>
  7748. </tr>
  7749. <tr>
  7750. <td>
  7751. <code>caBundle</code></br>
  7752. <em>
  7753. []byte
  7754. </em>
  7755. </td>
  7756. <td>
  7757. <em>(Optional)</em>
  7758. <p>CABundle is a base64-encoded CA certificate</p>
  7759. </td>
  7760. </tr>
  7761. <tr>
  7762. <td>
  7763. <code>caProvider</code></br>
  7764. <em>
  7765. <a href="#external-secrets.io/v1.CAProvider">
  7766. CAProvider
  7767. </a>
  7768. </em>
  7769. </td>
  7770. <td>
  7771. <em>(Optional)</em>
  7772. <p>see: <a href="https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider">https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider</a></p>
  7773. </td>
  7774. </tr>
  7775. </tbody>
  7776. </table>
  7777. <h3 id="external-secrets.io/v1.LdapAuthCredentials">LdapAuthCredentials
  7778. </h3>
  7779. <p>
  7780. (<em>Appears on:</em>
  7781. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  7782. </p>
  7783. <p>
  7784. </p>
  7785. <table>
  7786. <thead>
  7787. <tr>
  7788. <th>Field</th>
  7789. <th>Description</th>
  7790. </tr>
  7791. </thead>
  7792. <tbody>
  7793. <tr>
  7794. <td>
  7795. <code>identityId</code></br>
  7796. <em>
  7797. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7798. External Secrets meta/v1.SecretKeySelector
  7799. </a>
  7800. </em>
  7801. </td>
  7802. <td>
  7803. </td>
  7804. </tr>
  7805. <tr>
  7806. <td>
  7807. <code>ldapPassword</code></br>
  7808. <em>
  7809. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7810. External Secrets meta/v1.SecretKeySelector
  7811. </a>
  7812. </em>
  7813. </td>
  7814. <td>
  7815. </td>
  7816. </tr>
  7817. <tr>
  7818. <td>
  7819. <code>ldapUsername</code></br>
  7820. <em>
  7821. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7822. External Secrets meta/v1.SecretKeySelector
  7823. </a>
  7824. </em>
  7825. </td>
  7826. <td>
  7827. </td>
  7828. </tr>
  7829. </tbody>
  7830. </table>
  7831. <h3 id="external-secrets.io/v1.MachineIdentityScopeInWorkspace">MachineIdentityScopeInWorkspace
  7832. </h3>
  7833. <p>
  7834. (<em>Appears on:</em>
  7835. <a href="#external-secrets.io/v1.InfisicalProvider">InfisicalProvider</a>)
  7836. </p>
  7837. <p>
  7838. </p>
  7839. <table>
  7840. <thead>
  7841. <tr>
  7842. <th>Field</th>
  7843. <th>Description</th>
  7844. </tr>
  7845. </thead>
  7846. <tbody>
  7847. <tr>
  7848. <td>
  7849. <code>secretsPath</code></br>
  7850. <em>
  7851. string
  7852. </em>
  7853. </td>
  7854. <td>
  7855. <em>(Optional)</em>
  7856. <p>SecretsPath specifies the path to the secrets within the workspace. Defaults to &ldquo;/&rdquo; if not provided.</p>
  7857. </td>
  7858. </tr>
  7859. <tr>
  7860. <td>
  7861. <code>recursive</code></br>
  7862. <em>
  7863. bool
  7864. </em>
  7865. </td>
  7866. <td>
  7867. <em>(Optional)</em>
  7868. <p>Recursive indicates whether the secrets should be fetched recursively. Defaults to false if not provided.</p>
  7869. </td>
  7870. </tr>
  7871. <tr>
  7872. <td>
  7873. <code>environmentSlug</code></br>
  7874. <em>
  7875. string
  7876. </em>
  7877. </td>
  7878. <td>
  7879. <p>EnvironmentSlug is the required slug identifier for the environment.</p>
  7880. </td>
  7881. </tr>
  7882. <tr>
  7883. <td>
  7884. <code>projectSlug</code></br>
  7885. <em>
  7886. string
  7887. </em>
  7888. </td>
  7889. <td>
  7890. <p>ProjectSlug is the required slug identifier for the project.</p>
  7891. </td>
  7892. </tr>
  7893. <tr>
  7894. <td>
  7895. <code>expandSecretReferences</code></br>
  7896. <em>
  7897. bool
  7898. </em>
  7899. </td>
  7900. <td>
  7901. <em>(Optional)</em>
  7902. <p>ExpandSecretReferences indicates whether secret references should be expanded. Defaults to true if not provided.</p>
  7903. </td>
  7904. </tr>
  7905. </tbody>
  7906. </table>
  7907. <h3 id="external-secrets.io/v1.MaintenanceStatus">MaintenanceStatus
  7908. (<code>bool</code> alias)</p></h3>
  7909. <p>
  7910. </p>
  7911. <table>
  7912. <thead>
  7913. <tr>
  7914. <th>Value</th>
  7915. <th>Description</th>
  7916. </tr>
  7917. </thead>
  7918. <tbody><tr><td><p>true</p></td>
  7919. <td></td>
  7920. </tr><tr><td><p>false</p></td>
  7921. <td></td>
  7922. </tr></tbody>
  7923. </table>
  7924. <h3 id="external-secrets.io/v1.NTLMProtocol">NTLMProtocol
  7925. </h3>
  7926. <p>
  7927. (<em>Appears on:</em>
  7928. <a href="#external-secrets.io/v1.AuthorizationProtocol">AuthorizationProtocol</a>)
  7929. </p>
  7930. <p>
  7931. <p>NTLMProtocol contains the NTLM-specific configuration.</p>
  7932. </p>
  7933. <table>
  7934. <thead>
  7935. <tr>
  7936. <th>Field</th>
  7937. <th>Description</th>
  7938. </tr>
  7939. </thead>
  7940. <tbody>
  7941. <tr>
  7942. <td>
  7943. <code>usernameSecret</code></br>
  7944. <em>
  7945. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7946. External Secrets meta/v1.SecretKeySelector
  7947. </a>
  7948. </em>
  7949. </td>
  7950. <td>
  7951. </td>
  7952. </tr>
  7953. <tr>
  7954. <td>
  7955. <code>passwordSecret</code></br>
  7956. <em>
  7957. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7958. External Secrets meta/v1.SecretKeySelector
  7959. </a>
  7960. </em>
  7961. </td>
  7962. <td>
  7963. </td>
  7964. </tr>
  7965. </tbody>
  7966. </table>
  7967. <h3 id="external-secrets.io/v1.NoSecretError">NoSecretError
  7968. </h3>
  7969. <p>
  7970. <p>NoSecretError shall be returned when a GetSecret can not find the
  7971. desired secret. This is used for deletionPolicy.</p>
  7972. </p>
  7973. <h3 id="external-secrets.io/v1.NotModifiedError">NotModifiedError
  7974. </h3>
  7975. <p>
  7976. <p>NotModifiedError to signal that the webhook received no changes,
  7977. and it should just return without doing anything.</p>
  7978. </p>
  7979. <h3 id="external-secrets.io/v1.OciAuthCredentials">OciAuthCredentials
  7980. </h3>
  7981. <p>
  7982. (<em>Appears on:</em>
  7983. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  7984. </p>
  7985. <p>
  7986. </p>
  7987. <table>
  7988. <thead>
  7989. <tr>
  7990. <th>Field</th>
  7991. <th>Description</th>
  7992. </tr>
  7993. </thead>
  7994. <tbody>
  7995. <tr>
  7996. <td>
  7997. <code>identityId</code></br>
  7998. <em>
  7999. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8000. External Secrets meta/v1.SecretKeySelector
  8001. </a>
  8002. </em>
  8003. </td>
  8004. <td>
  8005. </td>
  8006. </tr>
  8007. <tr>
  8008. <td>
  8009. <code>privateKey</code></br>
  8010. <em>
  8011. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8012. External Secrets meta/v1.SecretKeySelector
  8013. </a>
  8014. </em>
  8015. </td>
  8016. <td>
  8017. </td>
  8018. </tr>
  8019. <tr>
  8020. <td>
  8021. <code>privateKeyPassphrase</code></br>
  8022. <em>
  8023. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8024. External Secrets meta/v1.SecretKeySelector
  8025. </a>
  8026. </em>
  8027. </td>
  8028. <td>
  8029. <em>(Optional)</em>
  8030. </td>
  8031. </tr>
  8032. <tr>
  8033. <td>
  8034. <code>fingerprint</code></br>
  8035. <em>
  8036. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8037. External Secrets meta/v1.SecretKeySelector
  8038. </a>
  8039. </em>
  8040. </td>
  8041. <td>
  8042. </td>
  8043. </tr>
  8044. <tr>
  8045. <td>
  8046. <code>userId</code></br>
  8047. <em>
  8048. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8049. External Secrets meta/v1.SecretKeySelector
  8050. </a>
  8051. </em>
  8052. </td>
  8053. <td>
  8054. </td>
  8055. </tr>
  8056. <tr>
  8057. <td>
  8058. <code>tenancyId</code></br>
  8059. <em>
  8060. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8061. External Secrets meta/v1.SecretKeySelector
  8062. </a>
  8063. </em>
  8064. </td>
  8065. <td>
  8066. </td>
  8067. </tr>
  8068. <tr>
  8069. <td>
  8070. <code>region</code></br>
  8071. <em>
  8072. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8073. External Secrets meta/v1.SecretKeySelector
  8074. </a>
  8075. </em>
  8076. </td>
  8077. <td>
  8078. </td>
  8079. </tr>
  8080. </tbody>
  8081. </table>
  8082. <h3 id="external-secrets.io/v1.OnboardbaseAuthSecretRef">OnboardbaseAuthSecretRef
  8083. </h3>
  8084. <p>
  8085. (<em>Appears on:</em>
  8086. <a href="#external-secrets.io/v1.OnboardbaseProvider">OnboardbaseProvider</a>)
  8087. </p>
  8088. <p>
  8089. <p>OnboardbaseAuthSecretRef holds secret references for onboardbase API Key credentials.</p>
  8090. </p>
  8091. <table>
  8092. <thead>
  8093. <tr>
  8094. <th>Field</th>
  8095. <th>Description</th>
  8096. </tr>
  8097. </thead>
  8098. <tbody>
  8099. <tr>
  8100. <td>
  8101. <code>apiKeyRef</code></br>
  8102. <em>
  8103. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8104. External Secrets meta/v1.SecretKeySelector
  8105. </a>
  8106. </em>
  8107. </td>
  8108. <td>
  8109. <p>OnboardbaseAPIKey is the APIKey generated by an admin account.
  8110. It is used to recognize and authorize access to a project and environment within onboardbase</p>
  8111. </td>
  8112. </tr>
  8113. <tr>
  8114. <td>
  8115. <code>passcodeRef</code></br>
  8116. <em>
  8117. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8118. External Secrets meta/v1.SecretKeySelector
  8119. </a>
  8120. </em>
  8121. </td>
  8122. <td>
  8123. <p>OnboardbasePasscode is the passcode attached to the API Key</p>
  8124. </td>
  8125. </tr>
  8126. </tbody>
  8127. </table>
  8128. <h3 id="external-secrets.io/v1.OnboardbaseProvider">OnboardbaseProvider
  8129. </h3>
  8130. <p>
  8131. (<em>Appears on:</em>
  8132. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8133. </p>
  8134. <p>
  8135. <p>OnboardbaseProvider configures a store to sync secrets using the Onboardbase provider.
  8136. Project and Config are required if not using a Service Token.</p>
  8137. </p>
  8138. <table>
  8139. <thead>
  8140. <tr>
  8141. <th>Field</th>
  8142. <th>Description</th>
  8143. </tr>
  8144. </thead>
  8145. <tbody>
  8146. <tr>
  8147. <td>
  8148. <code>auth</code></br>
  8149. <em>
  8150. <a href="#external-secrets.io/v1.OnboardbaseAuthSecretRef">
  8151. OnboardbaseAuthSecretRef
  8152. </a>
  8153. </em>
  8154. </td>
  8155. <td>
  8156. <p>Auth configures how the Operator authenticates with the Onboardbase API</p>
  8157. </td>
  8158. </tr>
  8159. <tr>
  8160. <td>
  8161. <code>apiHost</code></br>
  8162. <em>
  8163. string
  8164. </em>
  8165. </td>
  8166. <td>
  8167. <p>APIHost use this to configure the host url for the API for selfhosted installation, default is <a href="https://public.onboardbase.com/api/v1/">https://public.onboardbase.com/api/v1/</a></p>
  8168. </td>
  8169. </tr>
  8170. <tr>
  8171. <td>
  8172. <code>project</code></br>
  8173. <em>
  8174. string
  8175. </em>
  8176. </td>
  8177. <td>
  8178. <p>Project is an onboardbase project that the secrets should be pulled from</p>
  8179. </td>
  8180. </tr>
  8181. <tr>
  8182. <td>
  8183. <code>environment</code></br>
  8184. <em>
  8185. string
  8186. </em>
  8187. </td>
  8188. <td>
  8189. <p>Environment is the name of an environmnent within a project to pull the secrets from</p>
  8190. </td>
  8191. </tr>
  8192. </tbody>
  8193. </table>
  8194. <h3 id="external-secrets.io/v1.OnePasswordAuth">OnePasswordAuth
  8195. </h3>
  8196. <p>
  8197. (<em>Appears on:</em>
  8198. <a href="#external-secrets.io/v1.OnePasswordProvider">OnePasswordProvider</a>)
  8199. </p>
  8200. <p>
  8201. <p>OnePasswordAuth contains a secretRef for credentials.</p>
  8202. </p>
  8203. <table>
  8204. <thead>
  8205. <tr>
  8206. <th>Field</th>
  8207. <th>Description</th>
  8208. </tr>
  8209. </thead>
  8210. <tbody>
  8211. <tr>
  8212. <td>
  8213. <code>secretRef</code></br>
  8214. <em>
  8215. <a href="#external-secrets.io/v1.OnePasswordAuthSecretRef">
  8216. OnePasswordAuthSecretRef
  8217. </a>
  8218. </em>
  8219. </td>
  8220. <td>
  8221. </td>
  8222. </tr>
  8223. </tbody>
  8224. </table>
  8225. <h3 id="external-secrets.io/v1.OnePasswordAuthSecretRef">OnePasswordAuthSecretRef
  8226. </h3>
  8227. <p>
  8228. (<em>Appears on:</em>
  8229. <a href="#external-secrets.io/v1.OnePasswordAuth">OnePasswordAuth</a>)
  8230. </p>
  8231. <p>
  8232. <p>OnePasswordAuthSecretRef holds secret references for 1Password credentials.</p>
  8233. </p>
  8234. <table>
  8235. <thead>
  8236. <tr>
  8237. <th>Field</th>
  8238. <th>Description</th>
  8239. </tr>
  8240. </thead>
  8241. <tbody>
  8242. <tr>
  8243. <td>
  8244. <code>connectTokenSecretRef</code></br>
  8245. <em>
  8246. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8247. External Secrets meta/v1.SecretKeySelector
  8248. </a>
  8249. </em>
  8250. </td>
  8251. <td>
  8252. <p>The ConnectToken is used for authentication to a 1Password Connect Server.</p>
  8253. </td>
  8254. </tr>
  8255. </tbody>
  8256. </table>
  8257. <h3 id="external-secrets.io/v1.OnePasswordProvider">OnePasswordProvider
  8258. </h3>
  8259. <p>
  8260. (<em>Appears on:</em>
  8261. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8262. </p>
  8263. <p>
  8264. <p>OnePasswordProvider configures a store to sync secrets using the 1Password Secret Manager provider.</p>
  8265. </p>
  8266. <table>
  8267. <thead>
  8268. <tr>
  8269. <th>Field</th>
  8270. <th>Description</th>
  8271. </tr>
  8272. </thead>
  8273. <tbody>
  8274. <tr>
  8275. <td>
  8276. <code>auth</code></br>
  8277. <em>
  8278. <a href="#external-secrets.io/v1.OnePasswordAuth">
  8279. OnePasswordAuth
  8280. </a>
  8281. </em>
  8282. </td>
  8283. <td>
  8284. <p>Auth defines the information necessary to authenticate against OnePassword Connect Server</p>
  8285. </td>
  8286. </tr>
  8287. <tr>
  8288. <td>
  8289. <code>connectHost</code></br>
  8290. <em>
  8291. string
  8292. </em>
  8293. </td>
  8294. <td>
  8295. <p>ConnectHost defines the OnePassword Connect Server to connect to</p>
  8296. </td>
  8297. </tr>
  8298. <tr>
  8299. <td>
  8300. <code>vaults</code></br>
  8301. <em>
  8302. map[string]int
  8303. </em>
  8304. </td>
  8305. <td>
  8306. <p>Vaults defines which OnePassword vaults to search in which order</p>
  8307. </td>
  8308. </tr>
  8309. </tbody>
  8310. </table>
  8311. <h3 id="external-secrets.io/v1.OnePasswordSDKAuth">OnePasswordSDKAuth
  8312. </h3>
  8313. <p>
  8314. (<em>Appears on:</em>
  8315. <a href="#external-secrets.io/v1.OnePasswordSDKProvider">OnePasswordSDKProvider</a>)
  8316. </p>
  8317. <p>
  8318. <p>OnePasswordSDKAuth contains a secretRef for the service account token.</p>
  8319. </p>
  8320. <table>
  8321. <thead>
  8322. <tr>
  8323. <th>Field</th>
  8324. <th>Description</th>
  8325. </tr>
  8326. </thead>
  8327. <tbody>
  8328. <tr>
  8329. <td>
  8330. <code>serviceAccountSecretRef</code></br>
  8331. <em>
  8332. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8333. External Secrets meta/v1.SecretKeySelector
  8334. </a>
  8335. </em>
  8336. </td>
  8337. <td>
  8338. <p>ServiceAccountSecretRef points to the secret containing the token to access 1Password vault.</p>
  8339. </td>
  8340. </tr>
  8341. </tbody>
  8342. </table>
  8343. <h3 id="external-secrets.io/v1.OnePasswordSDKProvider">OnePasswordSDKProvider
  8344. </h3>
  8345. <p>
  8346. (<em>Appears on:</em>
  8347. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8348. </p>
  8349. <p>
  8350. <p>OnePasswordSDKProvider configures a store to sync secrets using the 1Password sdk.</p>
  8351. </p>
  8352. <table>
  8353. <thead>
  8354. <tr>
  8355. <th>Field</th>
  8356. <th>Description</th>
  8357. </tr>
  8358. </thead>
  8359. <tbody>
  8360. <tr>
  8361. <td>
  8362. <code>vault</code></br>
  8363. <em>
  8364. string
  8365. </em>
  8366. </td>
  8367. <td>
  8368. <p>Vault defines the vault&rsquo;s name or uuid to access. Do NOT add op:// prefix. This will be done automatically.</p>
  8369. </td>
  8370. </tr>
  8371. <tr>
  8372. <td>
  8373. <code>integrationInfo</code></br>
  8374. <em>
  8375. <a href="#external-secrets.io/v1.IntegrationInfo">
  8376. IntegrationInfo
  8377. </a>
  8378. </em>
  8379. </td>
  8380. <td>
  8381. <em>(Optional)</em>
  8382. <p>IntegrationInfo specifies the name and version of the integration built using the 1Password Go SDK.
  8383. If you don&rsquo;t know which name and version to use, use <code>DefaultIntegrationName</code> and <code>DefaultIntegrationVersion</code>, respectively.</p>
  8384. </td>
  8385. </tr>
  8386. <tr>
  8387. <td>
  8388. <code>auth</code></br>
  8389. <em>
  8390. <a href="#external-secrets.io/v1.OnePasswordSDKAuth">
  8391. OnePasswordSDKAuth
  8392. </a>
  8393. </em>
  8394. </td>
  8395. <td>
  8396. <p>Auth defines the information necessary to authenticate against OnePassword API.</p>
  8397. </td>
  8398. </tr>
  8399. </tbody>
  8400. </table>
  8401. <h3 id="external-secrets.io/v1.OracleAuth">OracleAuth
  8402. </h3>
  8403. <p>
  8404. (<em>Appears on:</em>
  8405. <a href="#external-secrets.io/v1.OracleProvider">OracleProvider</a>)
  8406. </p>
  8407. <p>
  8408. </p>
  8409. <table>
  8410. <thead>
  8411. <tr>
  8412. <th>Field</th>
  8413. <th>Description</th>
  8414. </tr>
  8415. </thead>
  8416. <tbody>
  8417. <tr>
  8418. <td>
  8419. <code>tenancy</code></br>
  8420. <em>
  8421. string
  8422. </em>
  8423. </td>
  8424. <td>
  8425. <p>Tenancy is the tenancy OCID where user is located.</p>
  8426. </td>
  8427. </tr>
  8428. <tr>
  8429. <td>
  8430. <code>user</code></br>
  8431. <em>
  8432. string
  8433. </em>
  8434. </td>
  8435. <td>
  8436. <p>User is an access OCID specific to the account.</p>
  8437. </td>
  8438. </tr>
  8439. <tr>
  8440. <td>
  8441. <code>secretRef</code></br>
  8442. <em>
  8443. <a href="#external-secrets.io/v1.OracleSecretRef">
  8444. OracleSecretRef
  8445. </a>
  8446. </em>
  8447. </td>
  8448. <td>
  8449. <p>SecretRef to pass through sensitive information.</p>
  8450. </td>
  8451. </tr>
  8452. </tbody>
  8453. </table>
  8454. <h3 id="external-secrets.io/v1.OraclePrincipalType">OraclePrincipalType
  8455. (<code>string</code> alias)</p></h3>
  8456. <p>
  8457. (<em>Appears on:</em>
  8458. <a href="#external-secrets.io/v1.OracleProvider">OracleProvider</a>)
  8459. </p>
  8460. <p>
  8461. </p>
  8462. <table>
  8463. <thead>
  8464. <tr>
  8465. <th>Value</th>
  8466. <th>Description</th>
  8467. </tr>
  8468. </thead>
  8469. <tbody><tr><td><p>&#34;InstancePrincipal&#34;</p></td>
  8470. <td><p>InstancePrincipal represents a instance principal.</p>
  8471. </td>
  8472. </tr><tr><td><p>&#34;UserPrincipal&#34;</p></td>
  8473. <td><p>UserPrincipal represents a user principal.</p>
  8474. </td>
  8475. </tr><tr><td><p>&#34;Workload&#34;</p></td>
  8476. <td><p>WorkloadPrincipal represents a workload principal.</p>
  8477. </td>
  8478. </tr></tbody>
  8479. </table>
  8480. <h3 id="external-secrets.io/v1.OracleProvider">OracleProvider
  8481. </h3>
  8482. <p>
  8483. (<em>Appears on:</em>
  8484. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8485. </p>
  8486. <p>
  8487. <p>Configures an store to sync secrets using a Oracle Vault
  8488. backend.</p>
  8489. </p>
  8490. <table>
  8491. <thead>
  8492. <tr>
  8493. <th>Field</th>
  8494. <th>Description</th>
  8495. </tr>
  8496. </thead>
  8497. <tbody>
  8498. <tr>
  8499. <td>
  8500. <code>region</code></br>
  8501. <em>
  8502. string
  8503. </em>
  8504. </td>
  8505. <td>
  8506. <p>Region is the region where vault is located.</p>
  8507. </td>
  8508. </tr>
  8509. <tr>
  8510. <td>
  8511. <code>vault</code></br>
  8512. <em>
  8513. string
  8514. </em>
  8515. </td>
  8516. <td>
  8517. <p>Vault is the vault&rsquo;s OCID of the specific vault where secret is located.</p>
  8518. </td>
  8519. </tr>
  8520. <tr>
  8521. <td>
  8522. <code>compartment</code></br>
  8523. <em>
  8524. string
  8525. </em>
  8526. </td>
  8527. <td>
  8528. <em>(Optional)</em>
  8529. <p>Compartment is the vault compartment OCID.
  8530. Required for PushSecret</p>
  8531. </td>
  8532. </tr>
  8533. <tr>
  8534. <td>
  8535. <code>encryptionKey</code></br>
  8536. <em>
  8537. string
  8538. </em>
  8539. </td>
  8540. <td>
  8541. <em>(Optional)</em>
  8542. <p>EncryptionKey is the OCID of the encryption key within the vault.
  8543. Required for PushSecret</p>
  8544. </td>
  8545. </tr>
  8546. <tr>
  8547. <td>
  8548. <code>principalType</code></br>
  8549. <em>
  8550. <a href="#external-secrets.io/v1.OraclePrincipalType">
  8551. OraclePrincipalType
  8552. </a>
  8553. </em>
  8554. </td>
  8555. <td>
  8556. <em>(Optional)</em>
  8557. <p>The type of principal to use for authentication. If left blank, the Auth struct will
  8558. determine the principal type. This optional field must be specified if using
  8559. workload identity.</p>
  8560. </td>
  8561. </tr>
  8562. <tr>
  8563. <td>
  8564. <code>auth</code></br>
  8565. <em>
  8566. <a href="#external-secrets.io/v1.OracleAuth">
  8567. OracleAuth
  8568. </a>
  8569. </em>
  8570. </td>
  8571. <td>
  8572. <em>(Optional)</em>
  8573. <p>Auth configures how secret-manager authenticates with the Oracle Vault.
  8574. If empty, use the instance principal, otherwise the user credentials specified in Auth.</p>
  8575. </td>
  8576. </tr>
  8577. <tr>
  8578. <td>
  8579. <code>serviceAccountRef</code></br>
  8580. <em>
  8581. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  8582. External Secrets meta/v1.ServiceAccountSelector
  8583. </a>
  8584. </em>
  8585. </td>
  8586. <td>
  8587. <em>(Optional)</em>
  8588. <p>ServiceAccountRef specified the service account
  8589. that should be used when authenticating with WorkloadIdentity.</p>
  8590. </td>
  8591. </tr>
  8592. </tbody>
  8593. </table>
  8594. <h3 id="external-secrets.io/v1.OracleSecretRef">OracleSecretRef
  8595. </h3>
  8596. <p>
  8597. (<em>Appears on:</em>
  8598. <a href="#external-secrets.io/v1.OracleAuth">OracleAuth</a>)
  8599. </p>
  8600. <p>
  8601. </p>
  8602. <table>
  8603. <thead>
  8604. <tr>
  8605. <th>Field</th>
  8606. <th>Description</th>
  8607. </tr>
  8608. </thead>
  8609. <tbody>
  8610. <tr>
  8611. <td>
  8612. <code>privatekey</code></br>
  8613. <em>
  8614. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8615. External Secrets meta/v1.SecretKeySelector
  8616. </a>
  8617. </em>
  8618. </td>
  8619. <td>
  8620. <p>PrivateKey is the user&rsquo;s API Signing Key in PEM format, used for authentication.</p>
  8621. </td>
  8622. </tr>
  8623. <tr>
  8624. <td>
  8625. <code>fingerprint</code></br>
  8626. <em>
  8627. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8628. External Secrets meta/v1.SecretKeySelector
  8629. </a>
  8630. </em>
  8631. </td>
  8632. <td>
  8633. <p>Fingerprint is the fingerprint of the API private key.</p>
  8634. </td>
  8635. </tr>
  8636. </tbody>
  8637. </table>
  8638. <h3 id="external-secrets.io/v1.PassboltAuth">PassboltAuth
  8639. </h3>
  8640. <p>
  8641. (<em>Appears on:</em>
  8642. <a href="#external-secrets.io/v1.PassboltProvider">PassboltProvider</a>)
  8643. </p>
  8644. <p>
  8645. <p>Passbolt contains a secretRef for the passbolt credentials.</p>
  8646. </p>
  8647. <table>
  8648. <thead>
  8649. <tr>
  8650. <th>Field</th>
  8651. <th>Description</th>
  8652. </tr>
  8653. </thead>
  8654. <tbody>
  8655. <tr>
  8656. <td>
  8657. <code>passwordSecretRef</code></br>
  8658. <em>
  8659. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8660. External Secrets meta/v1.SecretKeySelector
  8661. </a>
  8662. </em>
  8663. </td>
  8664. <td>
  8665. </td>
  8666. </tr>
  8667. <tr>
  8668. <td>
  8669. <code>privateKeySecretRef</code></br>
  8670. <em>
  8671. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8672. External Secrets meta/v1.SecretKeySelector
  8673. </a>
  8674. </em>
  8675. </td>
  8676. <td>
  8677. </td>
  8678. </tr>
  8679. </tbody>
  8680. </table>
  8681. <h3 id="external-secrets.io/v1.PassboltProvider">PassboltProvider
  8682. </h3>
  8683. <p>
  8684. (<em>Appears on:</em>
  8685. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8686. </p>
  8687. <p>
  8688. </p>
  8689. <table>
  8690. <thead>
  8691. <tr>
  8692. <th>Field</th>
  8693. <th>Description</th>
  8694. </tr>
  8695. </thead>
  8696. <tbody>
  8697. <tr>
  8698. <td>
  8699. <code>auth</code></br>
  8700. <em>
  8701. <a href="#external-secrets.io/v1.PassboltAuth">
  8702. PassboltAuth
  8703. </a>
  8704. </em>
  8705. </td>
  8706. <td>
  8707. <p>Auth defines the information necessary to authenticate against Passbolt Server</p>
  8708. </td>
  8709. </tr>
  8710. <tr>
  8711. <td>
  8712. <code>host</code></br>
  8713. <em>
  8714. string
  8715. </em>
  8716. </td>
  8717. <td>
  8718. <p>Host defines the Passbolt Server to connect to</p>
  8719. </td>
  8720. </tr>
  8721. </tbody>
  8722. </table>
  8723. <h3 id="external-secrets.io/v1.PasswordDepotAuth">PasswordDepotAuth
  8724. </h3>
  8725. <p>
  8726. (<em>Appears on:</em>
  8727. <a href="#external-secrets.io/v1.PasswordDepotProvider">PasswordDepotProvider</a>)
  8728. </p>
  8729. <p>
  8730. </p>
  8731. <table>
  8732. <thead>
  8733. <tr>
  8734. <th>Field</th>
  8735. <th>Description</th>
  8736. </tr>
  8737. </thead>
  8738. <tbody>
  8739. <tr>
  8740. <td>
  8741. <code>secretRef</code></br>
  8742. <em>
  8743. <a href="#external-secrets.io/v1.PasswordDepotSecretRef">
  8744. PasswordDepotSecretRef
  8745. </a>
  8746. </em>
  8747. </td>
  8748. <td>
  8749. </td>
  8750. </tr>
  8751. </tbody>
  8752. </table>
  8753. <h3 id="external-secrets.io/v1.PasswordDepotProvider">PasswordDepotProvider
  8754. </h3>
  8755. <p>
  8756. (<em>Appears on:</em>
  8757. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8758. </p>
  8759. <p>
  8760. <p>Configures a store to sync secrets with a Password Depot instance.</p>
  8761. </p>
  8762. <table>
  8763. <thead>
  8764. <tr>
  8765. <th>Field</th>
  8766. <th>Description</th>
  8767. </tr>
  8768. </thead>
  8769. <tbody>
  8770. <tr>
  8771. <td>
  8772. <code>host</code></br>
  8773. <em>
  8774. string
  8775. </em>
  8776. </td>
  8777. <td>
  8778. <p>URL configures the Password Depot instance URL.</p>
  8779. </td>
  8780. </tr>
  8781. <tr>
  8782. <td>
  8783. <code>database</code></br>
  8784. <em>
  8785. string
  8786. </em>
  8787. </td>
  8788. <td>
  8789. <p>Database to use as source</p>
  8790. </td>
  8791. </tr>
  8792. <tr>
  8793. <td>
  8794. <code>auth</code></br>
  8795. <em>
  8796. <a href="#external-secrets.io/v1.PasswordDepotAuth">
  8797. PasswordDepotAuth
  8798. </a>
  8799. </em>
  8800. </td>
  8801. <td>
  8802. <p>Auth configures how secret-manager authenticates with a Password Depot instance.</p>
  8803. </td>
  8804. </tr>
  8805. </tbody>
  8806. </table>
  8807. <h3 id="external-secrets.io/v1.PasswordDepotSecretRef">PasswordDepotSecretRef
  8808. </h3>
  8809. <p>
  8810. (<em>Appears on:</em>
  8811. <a href="#external-secrets.io/v1.PasswordDepotAuth">PasswordDepotAuth</a>)
  8812. </p>
  8813. <p>
  8814. </p>
  8815. <table>
  8816. <thead>
  8817. <tr>
  8818. <th>Field</th>
  8819. <th>Description</th>
  8820. </tr>
  8821. </thead>
  8822. <tbody>
  8823. <tr>
  8824. <td>
  8825. <code>credentials</code></br>
  8826. <em>
  8827. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8828. External Secrets meta/v1.SecretKeySelector
  8829. </a>
  8830. </em>
  8831. </td>
  8832. <td>
  8833. <em>(Optional)</em>
  8834. <p>Username / Password is used for authentication.</p>
  8835. </td>
  8836. </tr>
  8837. </tbody>
  8838. </table>
  8839. <h3 id="external-secrets.io/v1.PreviderAuth">PreviderAuth
  8840. </h3>
  8841. <p>
  8842. (<em>Appears on:</em>
  8843. <a href="#external-secrets.io/v1.PreviderProvider">PreviderProvider</a>)
  8844. </p>
  8845. <p>
  8846. <p>PreviderAuth contains a secretRef for credentials.</p>
  8847. </p>
  8848. <table>
  8849. <thead>
  8850. <tr>
  8851. <th>Field</th>
  8852. <th>Description</th>
  8853. </tr>
  8854. </thead>
  8855. <tbody>
  8856. <tr>
  8857. <td>
  8858. <code>secretRef</code></br>
  8859. <em>
  8860. <a href="#external-secrets.io/v1.PreviderAuthSecretRef">
  8861. PreviderAuthSecretRef
  8862. </a>
  8863. </em>
  8864. </td>
  8865. <td>
  8866. <em>(Optional)</em>
  8867. </td>
  8868. </tr>
  8869. </tbody>
  8870. </table>
  8871. <h3 id="external-secrets.io/v1.PreviderAuthSecretRef">PreviderAuthSecretRef
  8872. </h3>
  8873. <p>
  8874. (<em>Appears on:</em>
  8875. <a href="#external-secrets.io/v1.PreviderAuth">PreviderAuth</a>)
  8876. </p>
  8877. <p>
  8878. <p>PreviderAuthSecretRef holds secret references for Previder Vault credentials.</p>
  8879. </p>
  8880. <table>
  8881. <thead>
  8882. <tr>
  8883. <th>Field</th>
  8884. <th>Description</th>
  8885. </tr>
  8886. </thead>
  8887. <tbody>
  8888. <tr>
  8889. <td>
  8890. <code>accessToken</code></br>
  8891. <em>
  8892. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8893. External Secrets meta/v1.SecretKeySelector
  8894. </a>
  8895. </em>
  8896. </td>
  8897. <td>
  8898. <p>The AccessToken is used for authentication</p>
  8899. </td>
  8900. </tr>
  8901. </tbody>
  8902. </table>
  8903. <h3 id="external-secrets.io/v1.PreviderProvider">PreviderProvider
  8904. </h3>
  8905. <p>
  8906. (<em>Appears on:</em>
  8907. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8908. </p>
  8909. <p>
  8910. <p>PreviderProvider configures a store to sync secrets using the Previder Secret Manager provider.</p>
  8911. </p>
  8912. <table>
  8913. <thead>
  8914. <tr>
  8915. <th>Field</th>
  8916. <th>Description</th>
  8917. </tr>
  8918. </thead>
  8919. <tbody>
  8920. <tr>
  8921. <td>
  8922. <code>auth</code></br>
  8923. <em>
  8924. <a href="#external-secrets.io/v1.PreviderAuth">
  8925. PreviderAuth
  8926. </a>
  8927. </em>
  8928. </td>
  8929. <td>
  8930. </td>
  8931. </tr>
  8932. <tr>
  8933. <td>
  8934. <code>baseUri</code></br>
  8935. <em>
  8936. string
  8937. </em>
  8938. </td>
  8939. <td>
  8940. <em>(Optional)</em>
  8941. </td>
  8942. </tr>
  8943. </tbody>
  8944. </table>
  8945. <h3 id="external-secrets.io/v1.Provider">Provider
  8946. </h3>
  8947. <p>
  8948. <p>Provider is a common interface for interacting with secret backends.</p>
  8949. </p>
  8950. <h3 id="external-secrets.io/v1.PulumiProvider">PulumiProvider
  8951. </h3>
  8952. <p>
  8953. (<em>Appears on:</em>
  8954. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8955. </p>
  8956. <p>
  8957. </p>
  8958. <table>
  8959. <thead>
  8960. <tr>
  8961. <th>Field</th>
  8962. <th>Description</th>
  8963. </tr>
  8964. </thead>
  8965. <tbody>
  8966. <tr>
  8967. <td>
  8968. <code>apiUrl</code></br>
  8969. <em>
  8970. string
  8971. </em>
  8972. </td>
  8973. <td>
  8974. <p>APIURL is the URL of the Pulumi API.</p>
  8975. </td>
  8976. </tr>
  8977. <tr>
  8978. <td>
  8979. <code>accessToken</code></br>
  8980. <em>
  8981. <a href="#external-secrets.io/v1.PulumiProviderSecretRef">
  8982. PulumiProviderSecretRef
  8983. </a>
  8984. </em>
  8985. </td>
  8986. <td>
  8987. <p>AccessToken is the access tokens to sign in to the Pulumi Cloud Console.</p>
  8988. </td>
  8989. </tr>
  8990. <tr>
  8991. <td>
  8992. <code>organization</code></br>
  8993. <em>
  8994. string
  8995. </em>
  8996. </td>
  8997. <td>
  8998. <p>Organization are a space to collaborate on shared projects and stacks.
  8999. To create a new organization, visit <a href="https://app.pulumi.com/">https://app.pulumi.com/</a> and click &ldquo;New Organization&rdquo;.</p>
  9000. </td>
  9001. </tr>
  9002. <tr>
  9003. <td>
  9004. <code>project</code></br>
  9005. <em>
  9006. string
  9007. </em>
  9008. </td>
  9009. <td>
  9010. <p>Project is the name of the Pulumi ESC project the environment belongs to.</p>
  9011. </td>
  9012. </tr>
  9013. <tr>
  9014. <td>
  9015. <code>environment</code></br>
  9016. <em>
  9017. string
  9018. </em>
  9019. </td>
  9020. <td>
  9021. <p>Environment are YAML documents composed of static key-value pairs, programmatic expressions,
  9022. dynamically retrieved values from supported providers including all major clouds,
  9023. and other Pulumi ESC environments.
  9024. To create a new environment, visit <a href="https://www.pulumi.com/docs/esc/environments/">https://www.pulumi.com/docs/esc/environments/</a> for more information.</p>
  9025. </td>
  9026. </tr>
  9027. </tbody>
  9028. </table>
  9029. <h3 id="external-secrets.io/v1.PulumiProviderSecretRef">PulumiProviderSecretRef
  9030. </h3>
  9031. <p>
  9032. (<em>Appears on:</em>
  9033. <a href="#external-secrets.io/v1.PulumiProvider">PulumiProvider</a>)
  9034. </p>
  9035. <p>
  9036. </p>
  9037. <table>
  9038. <thead>
  9039. <tr>
  9040. <th>Field</th>
  9041. <th>Description</th>
  9042. </tr>
  9043. </thead>
  9044. <tbody>
  9045. <tr>
  9046. <td>
  9047. <code>secretRef</code></br>
  9048. <em>
  9049. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9050. External Secrets meta/v1.SecretKeySelector
  9051. </a>
  9052. </em>
  9053. </td>
  9054. <td>
  9055. <p>SecretRef is a reference to a secret containing the Pulumi API token.</p>
  9056. </td>
  9057. </tr>
  9058. </tbody>
  9059. </table>
  9060. <h3 id="external-secrets.io/v1.PushSecretData">PushSecretData
  9061. </h3>
  9062. <p>
  9063. <p>PushSecretData is an interface to allow using v1alpha1.PushSecretData content in Provider registered in v1.</p>
  9064. </p>
  9065. <h3 id="external-secrets.io/v1.PushSecretRemoteRef">PushSecretRemoteRef
  9066. </h3>
  9067. <p>
  9068. <p>PushSecretRemoteRef is an interface to allow using v1alpha1.PushSecretRemoteRef in Provider registered in v1.</p>
  9069. </p>
  9070. <h3 id="external-secrets.io/v1.ScalewayProvider">ScalewayProvider
  9071. </h3>
  9072. <p>
  9073. (<em>Appears on:</em>
  9074. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  9075. </p>
  9076. <p>
  9077. </p>
  9078. <table>
  9079. <thead>
  9080. <tr>
  9081. <th>Field</th>
  9082. <th>Description</th>
  9083. </tr>
  9084. </thead>
  9085. <tbody>
  9086. <tr>
  9087. <td>
  9088. <code>apiUrl</code></br>
  9089. <em>
  9090. string
  9091. </em>
  9092. </td>
  9093. <td>
  9094. <em>(Optional)</em>
  9095. <p>APIURL is the url of the api to use. Defaults to <a href="https://api.scaleway.com">https://api.scaleway.com</a></p>
  9096. </td>
  9097. </tr>
  9098. <tr>
  9099. <td>
  9100. <code>region</code></br>
  9101. <em>
  9102. string
  9103. </em>
  9104. </td>
  9105. <td>
  9106. <p>Region where your secrets are located: <a href="https://developers.scaleway.com/en/quickstart/#region-and-zone">https://developers.scaleway.com/en/quickstart/#region-and-zone</a></p>
  9107. </td>
  9108. </tr>
  9109. <tr>
  9110. <td>
  9111. <code>projectId</code></br>
  9112. <em>
  9113. string
  9114. </em>
  9115. </td>
  9116. <td>
  9117. <p>ProjectID is the id of your project, which you can find in the console: <a href="https://console.scaleway.com/project/settings">https://console.scaleway.com/project/settings</a></p>
  9118. </td>
  9119. </tr>
  9120. <tr>
  9121. <td>
  9122. <code>accessKey</code></br>
  9123. <em>
  9124. <a href="#external-secrets.io/v1.ScalewayProviderSecretRef">
  9125. ScalewayProviderSecretRef
  9126. </a>
  9127. </em>
  9128. </td>
  9129. <td>
  9130. <p>AccessKey is the non-secret part of the api key.</p>
  9131. </td>
  9132. </tr>
  9133. <tr>
  9134. <td>
  9135. <code>secretKey</code></br>
  9136. <em>
  9137. <a href="#external-secrets.io/v1.ScalewayProviderSecretRef">
  9138. ScalewayProviderSecretRef
  9139. </a>
  9140. </em>
  9141. </td>
  9142. <td>
  9143. <p>SecretKey is the non-secret part of the api key.</p>
  9144. </td>
  9145. </tr>
  9146. </tbody>
  9147. </table>
  9148. <h3 id="external-secrets.io/v1.ScalewayProviderSecretRef">ScalewayProviderSecretRef
  9149. </h3>
  9150. <p>
  9151. (<em>Appears on:</em>
  9152. <a href="#external-secrets.io/v1.ScalewayProvider">ScalewayProvider</a>)
  9153. </p>
  9154. <p>
  9155. </p>
  9156. <table>
  9157. <thead>
  9158. <tr>
  9159. <th>Field</th>
  9160. <th>Description</th>
  9161. </tr>
  9162. </thead>
  9163. <tbody>
  9164. <tr>
  9165. <td>
  9166. <code>value</code></br>
  9167. <em>
  9168. string
  9169. </em>
  9170. </td>
  9171. <td>
  9172. <em>(Optional)</em>
  9173. <p>Value can be specified directly to set a value without using a secret.</p>
  9174. </td>
  9175. </tr>
  9176. <tr>
  9177. <td>
  9178. <code>secretRef</code></br>
  9179. <em>
  9180. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9181. External Secrets meta/v1.SecretKeySelector
  9182. </a>
  9183. </em>
  9184. </td>
  9185. <td>
  9186. <em>(Optional)</em>
  9187. <p>SecretRef references a key in a secret that will be used as value.</p>
  9188. </td>
  9189. </tr>
  9190. </tbody>
  9191. </table>
  9192. <h3 id="external-secrets.io/v1.SecretReference">SecretReference
  9193. </h3>
  9194. <p>
  9195. (<em>Appears on:</em>
  9196. <a href="#external-secrets.io/v1.AwsCredentialsConfig">AwsCredentialsConfig</a>)
  9197. </p>
  9198. <p>
  9199. <p>SecretReference holds the details of a secret.</p>
  9200. </p>
  9201. <table>
  9202. <thead>
  9203. <tr>
  9204. <th>Field</th>
  9205. <th>Description</th>
  9206. </tr>
  9207. </thead>
  9208. <tbody>
  9209. <tr>
  9210. <td>
  9211. <code>name</code></br>
  9212. <em>
  9213. string
  9214. </em>
  9215. </td>
  9216. <td>
  9217. <p>name of the secret.</p>
  9218. </td>
  9219. </tr>
  9220. <tr>
  9221. <td>
  9222. <code>namespace</code></br>
  9223. <em>
  9224. string
  9225. </em>
  9226. </td>
  9227. <td>
  9228. <p>namespace in which the secret exists. If empty, secret will looked up in local namespace.</p>
  9229. </td>
  9230. </tr>
  9231. </tbody>
  9232. </table>
  9233. <h3 id="external-secrets.io/v1.SecretServerProvider">SecretServerProvider
  9234. </h3>
  9235. <p>
  9236. (<em>Appears on:</em>
  9237. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  9238. </p>
  9239. <p>
  9240. <p>See <a href="https://github.com/DelineaXPM/tss-sdk-go/blob/main/server/server.go">https://github.com/DelineaXPM/tss-sdk-go/blob/main/server/server.go</a>.</p>
  9241. </p>
  9242. <table>
  9243. <thead>
  9244. <tr>
  9245. <th>Field</th>
  9246. <th>Description</th>
  9247. </tr>
  9248. </thead>
  9249. <tbody>
  9250. <tr>
  9251. <td>
  9252. <code>username</code></br>
  9253. <em>
  9254. <a href="#external-secrets.io/v1.SecretServerProviderRef">
  9255. SecretServerProviderRef
  9256. </a>
  9257. </em>
  9258. </td>
  9259. <td>
  9260. <p>Username is the secret server account username.</p>
  9261. </td>
  9262. </tr>
  9263. <tr>
  9264. <td>
  9265. <code>password</code></br>
  9266. <em>
  9267. <a href="#external-secrets.io/v1.SecretServerProviderRef">
  9268. SecretServerProviderRef
  9269. </a>
  9270. </em>
  9271. </td>
  9272. <td>
  9273. <p>Password is the secret server account password.</p>
  9274. </td>
  9275. </tr>
  9276. <tr>
  9277. <td>
  9278. <code>domain</code></br>
  9279. <em>
  9280. string
  9281. </em>
  9282. </td>
  9283. <td>
  9284. <em>(Optional)</em>
  9285. <p>Domain is the secret server domain.</p>
  9286. </td>
  9287. </tr>
  9288. <tr>
  9289. <td>
  9290. <code>serverURL</code></br>
  9291. <em>
  9292. string
  9293. </em>
  9294. </td>
  9295. <td>
  9296. <p>ServerURL
  9297. URL to your secret server installation</p>
  9298. </td>
  9299. </tr>
  9300. </tbody>
  9301. </table>
  9302. <h3 id="external-secrets.io/v1.SecretServerProviderRef">SecretServerProviderRef
  9303. </h3>
  9304. <p>
  9305. (<em>Appears on:</em>
  9306. <a href="#external-secrets.io/v1.SecretServerProvider">SecretServerProvider</a>)
  9307. </p>
  9308. <p>
  9309. </p>
  9310. <table>
  9311. <thead>
  9312. <tr>
  9313. <th>Field</th>
  9314. <th>Description</th>
  9315. </tr>
  9316. </thead>
  9317. <tbody>
  9318. <tr>
  9319. <td>
  9320. <code>value</code></br>
  9321. <em>
  9322. string
  9323. </em>
  9324. </td>
  9325. <td>
  9326. <em>(Optional)</em>
  9327. <p>Value can be specified directly to set a value without using a secret.</p>
  9328. </td>
  9329. </tr>
  9330. <tr>
  9331. <td>
  9332. <code>secretRef</code></br>
  9333. <em>
  9334. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9335. External Secrets meta/v1.SecretKeySelector
  9336. </a>
  9337. </em>
  9338. </td>
  9339. <td>
  9340. <em>(Optional)</em>
  9341. <p>SecretRef references a key in a secret that will be used as value.</p>
  9342. </td>
  9343. </tr>
  9344. </tbody>
  9345. </table>
  9346. <h3 id="external-secrets.io/v1.SecretStore">SecretStore
  9347. </h3>
  9348. <p>
  9349. <p>SecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  9350. </p>
  9351. <table>
  9352. <thead>
  9353. <tr>
  9354. <th>Field</th>
  9355. <th>Description</th>
  9356. </tr>
  9357. </thead>
  9358. <tbody>
  9359. <tr>
  9360. <td>
  9361. <code>metadata</code></br>
  9362. <em>
  9363. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  9364. Kubernetes meta/v1.ObjectMeta
  9365. </a>
  9366. </em>
  9367. </td>
  9368. <td>
  9369. Refer to the Kubernetes API documentation for the fields of the
  9370. <code>metadata</code> field.
  9371. </td>
  9372. </tr>
  9373. <tr>
  9374. <td>
  9375. <code>spec</code></br>
  9376. <em>
  9377. <a href="#external-secrets.io/v1.SecretStoreSpec">
  9378. SecretStoreSpec
  9379. </a>
  9380. </em>
  9381. </td>
  9382. <td>
  9383. <br/>
  9384. <br/>
  9385. <table>
  9386. <tr>
  9387. <td>
  9388. <code>controller</code></br>
  9389. <em>
  9390. string
  9391. </em>
  9392. </td>
  9393. <td>
  9394. <em>(Optional)</em>
  9395. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  9396. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  9397. </td>
  9398. </tr>
  9399. <tr>
  9400. <td>
  9401. <code>provider</code></br>
  9402. <em>
  9403. <a href="#external-secrets.io/v1.SecretStoreProvider">
  9404. SecretStoreProvider
  9405. </a>
  9406. </em>
  9407. </td>
  9408. <td>
  9409. <p>Used to configure the provider. Only one provider may be set</p>
  9410. </td>
  9411. </tr>
  9412. <tr>
  9413. <td>
  9414. <code>retrySettings</code></br>
  9415. <em>
  9416. <a href="#external-secrets.io/v1.SecretStoreRetrySettings">
  9417. SecretStoreRetrySettings
  9418. </a>
  9419. </em>
  9420. </td>
  9421. <td>
  9422. <em>(Optional)</em>
  9423. <p>Used to configure http retries if failed</p>
  9424. </td>
  9425. </tr>
  9426. <tr>
  9427. <td>
  9428. <code>refreshInterval</code></br>
  9429. <em>
  9430. int
  9431. </em>
  9432. </td>
  9433. <td>
  9434. <em>(Optional)</em>
  9435. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  9436. </td>
  9437. </tr>
  9438. <tr>
  9439. <td>
  9440. <code>conditions</code></br>
  9441. <em>
  9442. <a href="#external-secrets.io/v1.ClusterSecretStoreCondition">
  9443. []ClusterSecretStoreCondition
  9444. </a>
  9445. </em>
  9446. </td>
  9447. <td>
  9448. <em>(Optional)</em>
  9449. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  9450. </td>
  9451. </tr>
  9452. </table>
  9453. </td>
  9454. </tr>
  9455. <tr>
  9456. <td>
  9457. <code>status</code></br>
  9458. <em>
  9459. <a href="#external-secrets.io/v1.SecretStoreStatus">
  9460. SecretStoreStatus
  9461. </a>
  9462. </em>
  9463. </td>
  9464. <td>
  9465. </td>
  9466. </tr>
  9467. </tbody>
  9468. </table>
  9469. <h3 id="external-secrets.io/v1.SecretStoreCapabilities">SecretStoreCapabilities
  9470. (<code>string</code> alias)</p></h3>
  9471. <p>
  9472. (<em>Appears on:</em>
  9473. <a href="#external-secrets.io/v1.SecretStoreStatus">SecretStoreStatus</a>)
  9474. </p>
  9475. <p>
  9476. <p>SecretStoreCapabilities defines the possible operations a SecretStore can do.</p>
  9477. </p>
  9478. <table>
  9479. <thead>
  9480. <tr>
  9481. <th>Value</th>
  9482. <th>Description</th>
  9483. </tr>
  9484. </thead>
  9485. <tbody><tr><td><p>&#34;ReadOnly&#34;</p></td>
  9486. <td></td>
  9487. </tr><tr><td><p>&#34;ReadWrite&#34;</p></td>
  9488. <td></td>
  9489. </tr><tr><td><p>&#34;WriteOnly&#34;</p></td>
  9490. <td></td>
  9491. </tr></tbody>
  9492. </table>
  9493. <h3 id="external-secrets.io/v1.SecretStoreConditionType">SecretStoreConditionType
  9494. (<code>string</code> alias)</p></h3>
  9495. <p>
  9496. (<em>Appears on:</em>
  9497. <a href="#external-secrets.io/v1.SecretStoreStatusCondition">SecretStoreStatusCondition</a>)
  9498. </p>
  9499. <p>
  9500. </p>
  9501. <table>
  9502. <thead>
  9503. <tr>
  9504. <th>Value</th>
  9505. <th>Description</th>
  9506. </tr>
  9507. </thead>
  9508. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  9509. <td></td>
  9510. </tr></tbody>
  9511. </table>
  9512. <h3 id="external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider
  9513. </h3>
  9514. <p>
  9515. (<em>Appears on:</em>
  9516. <a href="#external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec</a>)
  9517. </p>
  9518. <p>
  9519. <p>SecretStoreProvider contains the provider-specific configuration.</p>
  9520. </p>
  9521. <table>
  9522. <thead>
  9523. <tr>
  9524. <th>Field</th>
  9525. <th>Description</th>
  9526. </tr>
  9527. </thead>
  9528. <tbody>
  9529. <tr>
  9530. <td>
  9531. <code>aws</code></br>
  9532. <em>
  9533. <a href="#external-secrets.io/v1.AWSProvider">
  9534. AWSProvider
  9535. </a>
  9536. </em>
  9537. </td>
  9538. <td>
  9539. <em>(Optional)</em>
  9540. <p>AWS configures this store to sync secrets using AWS Secret Manager provider</p>
  9541. </td>
  9542. </tr>
  9543. <tr>
  9544. <td>
  9545. <code>azurekv</code></br>
  9546. <em>
  9547. <a href="#external-secrets.io/v1.AzureKVProvider">
  9548. AzureKVProvider
  9549. </a>
  9550. </em>
  9551. </td>
  9552. <td>
  9553. <em>(Optional)</em>
  9554. <p>AzureKV configures this store to sync secrets using Azure Key Vault provider</p>
  9555. </td>
  9556. </tr>
  9557. <tr>
  9558. <td>
  9559. <code>akeyless</code></br>
  9560. <em>
  9561. <a href="#external-secrets.io/v1.AkeylessProvider">
  9562. AkeylessProvider
  9563. </a>
  9564. </em>
  9565. </td>
  9566. <td>
  9567. <em>(Optional)</em>
  9568. <p>Akeyless configures this store to sync secrets using Akeyless Vault provider</p>
  9569. </td>
  9570. </tr>
  9571. <tr>
  9572. <td>
  9573. <code>bitwardensecretsmanager</code></br>
  9574. <em>
  9575. <a href="#external-secrets.io/v1.BitwardenSecretsManagerProvider">
  9576. BitwardenSecretsManagerProvider
  9577. </a>
  9578. </em>
  9579. </td>
  9580. <td>
  9581. <em>(Optional)</em>
  9582. <p>BitwardenSecretsManager configures this store to sync secrets using BitwardenSecretsManager provider</p>
  9583. </td>
  9584. </tr>
  9585. <tr>
  9586. <td>
  9587. <code>vault</code></br>
  9588. <em>
  9589. <a href="#external-secrets.io/v1.VaultProvider">
  9590. VaultProvider
  9591. </a>
  9592. </em>
  9593. </td>
  9594. <td>
  9595. <em>(Optional)</em>
  9596. <p>Vault configures this store to sync secrets using Hashi provider</p>
  9597. </td>
  9598. </tr>
  9599. <tr>
  9600. <td>
  9601. <code>gcpsm</code></br>
  9602. <em>
  9603. <a href="#external-secrets.io/v1.GCPSMProvider">
  9604. GCPSMProvider
  9605. </a>
  9606. </em>
  9607. </td>
  9608. <td>
  9609. <em>(Optional)</em>
  9610. <p>GCPSM configures this store to sync secrets using Google Cloud Platform Secret Manager provider</p>
  9611. </td>
  9612. </tr>
  9613. <tr>
  9614. <td>
  9615. <code>oracle</code></br>
  9616. <em>
  9617. <a href="#external-secrets.io/v1.OracleProvider">
  9618. OracleProvider
  9619. </a>
  9620. </em>
  9621. </td>
  9622. <td>
  9623. <em>(Optional)</em>
  9624. <p>Oracle configures this store to sync secrets using Oracle Vault provider</p>
  9625. </td>
  9626. </tr>
  9627. <tr>
  9628. <td>
  9629. <code>ibm</code></br>
  9630. <em>
  9631. <a href="#external-secrets.io/v1.IBMProvider">
  9632. IBMProvider
  9633. </a>
  9634. </em>
  9635. </td>
  9636. <td>
  9637. <em>(Optional)</em>
  9638. <p>IBM configures this store to sync secrets using IBM Cloud provider</p>
  9639. </td>
  9640. </tr>
  9641. <tr>
  9642. <td>
  9643. <code>yandexcertificatemanager</code></br>
  9644. <em>
  9645. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">
  9646. YandexCertificateManagerProvider
  9647. </a>
  9648. </em>
  9649. </td>
  9650. <td>
  9651. <em>(Optional)</em>
  9652. <p>YandexCertificateManager configures this store to sync secrets using Yandex Certificate Manager provider</p>
  9653. </td>
  9654. </tr>
  9655. <tr>
  9656. <td>
  9657. <code>yandexlockbox</code></br>
  9658. <em>
  9659. <a href="#external-secrets.io/v1.YandexLockboxProvider">
  9660. YandexLockboxProvider
  9661. </a>
  9662. </em>
  9663. </td>
  9664. <td>
  9665. <em>(Optional)</em>
  9666. <p>YandexLockbox configures this store to sync secrets using Yandex Lockbox provider</p>
  9667. </td>
  9668. </tr>
  9669. <tr>
  9670. <td>
  9671. <code>github</code></br>
  9672. <em>
  9673. <a href="#external-secrets.io/v1.GithubProvider">
  9674. GithubProvider
  9675. </a>
  9676. </em>
  9677. </td>
  9678. <td>
  9679. <em>(Optional)</em>
  9680. <p>Github configures this store to push Github Action secrets using Github API provider</p>
  9681. </td>
  9682. </tr>
  9683. <tr>
  9684. <td>
  9685. <code>gitlab</code></br>
  9686. <em>
  9687. <a href="#external-secrets.io/v1.GitlabProvider">
  9688. GitlabProvider
  9689. </a>
  9690. </em>
  9691. </td>
  9692. <td>
  9693. <em>(Optional)</em>
  9694. <p>GitLab configures this store to sync secrets using GitLab Variables provider</p>
  9695. </td>
  9696. </tr>
  9697. <tr>
  9698. <td>
  9699. <code>alibaba</code></br>
  9700. <em>
  9701. <a href="#external-secrets.io/v1.AlibabaProvider">
  9702. AlibabaProvider
  9703. </a>
  9704. </em>
  9705. </td>
  9706. <td>
  9707. <em>(Optional)</em>
  9708. <p>Alibaba configures this store to sync secrets using Alibaba Cloud provider</p>
  9709. </td>
  9710. </tr>
  9711. <tr>
  9712. <td>
  9713. <code>onepassword</code></br>
  9714. <em>
  9715. <a href="#external-secrets.io/v1.OnePasswordProvider">
  9716. OnePasswordProvider
  9717. </a>
  9718. </em>
  9719. </td>
  9720. <td>
  9721. <em>(Optional)</em>
  9722. <p>OnePassword configures this store to sync secrets using the 1Password Cloud provider</p>
  9723. </td>
  9724. </tr>
  9725. <tr>
  9726. <td>
  9727. <code>onepasswordSDK</code></br>
  9728. <em>
  9729. <a href="#external-secrets.io/v1.OnePasswordSDKProvider">
  9730. OnePasswordSDKProvider
  9731. </a>
  9732. </em>
  9733. </td>
  9734. <td>
  9735. <em>(Optional)</em>
  9736. <p>OnePasswordSDK configures this store to use 1Password&rsquo;s new Go SDK to sync secrets.</p>
  9737. </td>
  9738. </tr>
  9739. <tr>
  9740. <td>
  9741. <code>webhook</code></br>
  9742. <em>
  9743. <a href="#external-secrets.io/v1.WebhookProvider">
  9744. WebhookProvider
  9745. </a>
  9746. </em>
  9747. </td>
  9748. <td>
  9749. <em>(Optional)</em>
  9750. <p>Webhook configures this store to sync secrets using a generic templated webhook</p>
  9751. </td>
  9752. </tr>
  9753. <tr>
  9754. <td>
  9755. <code>kubernetes</code></br>
  9756. <em>
  9757. <a href="#external-secrets.io/v1.KubernetesProvider">
  9758. KubernetesProvider
  9759. </a>
  9760. </em>
  9761. </td>
  9762. <td>
  9763. <em>(Optional)</em>
  9764. <p>Kubernetes configures this store to sync secrets using a Kubernetes cluster provider</p>
  9765. </td>
  9766. </tr>
  9767. <tr>
  9768. <td>
  9769. <code>fake</code></br>
  9770. <em>
  9771. <a href="#external-secrets.io/v1.FakeProvider">
  9772. FakeProvider
  9773. </a>
  9774. </em>
  9775. </td>
  9776. <td>
  9777. <em>(Optional)</em>
  9778. <p>Fake configures a store with static key/value pairs</p>
  9779. </td>
  9780. </tr>
  9781. <tr>
  9782. <td>
  9783. <code>senhasegura</code></br>
  9784. <em>
  9785. <a href="#external-secrets.io/v1.SenhaseguraProvider">
  9786. SenhaseguraProvider
  9787. </a>
  9788. </em>
  9789. </td>
  9790. <td>
  9791. <em>(Optional)</em>
  9792. <p>Senhasegura configures this store to sync secrets using senhasegura provider</p>
  9793. </td>
  9794. </tr>
  9795. <tr>
  9796. <td>
  9797. <code>scaleway</code></br>
  9798. <em>
  9799. <a href="#external-secrets.io/v1.ScalewayProvider">
  9800. ScalewayProvider
  9801. </a>
  9802. </em>
  9803. </td>
  9804. <td>
  9805. <em>(Optional)</em>
  9806. <p>Scaleway</p>
  9807. </td>
  9808. </tr>
  9809. <tr>
  9810. <td>
  9811. <code>doppler</code></br>
  9812. <em>
  9813. <a href="#external-secrets.io/v1.DopplerProvider">
  9814. DopplerProvider
  9815. </a>
  9816. </em>
  9817. </td>
  9818. <td>
  9819. <em>(Optional)</em>
  9820. <p>Doppler configures this store to sync secrets using the Doppler provider</p>
  9821. </td>
  9822. </tr>
  9823. <tr>
  9824. <td>
  9825. <code>previder</code></br>
  9826. <em>
  9827. <a href="#external-secrets.io/v1.PreviderProvider">
  9828. PreviderProvider
  9829. </a>
  9830. </em>
  9831. </td>
  9832. <td>
  9833. <em>(Optional)</em>
  9834. <p>Previder configures this store to sync secrets using the Previder provider</p>
  9835. </td>
  9836. </tr>
  9837. <tr>
  9838. <td>
  9839. <code>onboardbase</code></br>
  9840. <em>
  9841. <a href="#external-secrets.io/v1.OnboardbaseProvider">
  9842. OnboardbaseProvider
  9843. </a>
  9844. </em>
  9845. </td>
  9846. <td>
  9847. <em>(Optional)</em>
  9848. <p>Onboardbase configures this store to sync secrets using the Onboardbase provider</p>
  9849. </td>
  9850. </tr>
  9851. <tr>
  9852. <td>
  9853. <code>keepersecurity</code></br>
  9854. <em>
  9855. <a href="#external-secrets.io/v1.KeeperSecurityProvider">
  9856. KeeperSecurityProvider
  9857. </a>
  9858. </em>
  9859. </td>
  9860. <td>
  9861. <em>(Optional)</em>
  9862. <p>KeeperSecurity configures this store to sync secrets using the KeeperSecurity provider</p>
  9863. </td>
  9864. </tr>
  9865. <tr>
  9866. <td>
  9867. <code>conjur</code></br>
  9868. <em>
  9869. <a href="#external-secrets.io/v1.ConjurProvider">
  9870. ConjurProvider
  9871. </a>
  9872. </em>
  9873. </td>
  9874. <td>
  9875. <em>(Optional)</em>
  9876. <p>Conjur configures this store to sync secrets using conjur provider</p>
  9877. </td>
  9878. </tr>
  9879. <tr>
  9880. <td>
  9881. <code>delinea</code></br>
  9882. <em>
  9883. <a href="#external-secrets.io/v1.DelineaProvider">
  9884. DelineaProvider
  9885. </a>
  9886. </em>
  9887. </td>
  9888. <td>
  9889. <em>(Optional)</em>
  9890. <p>Delinea DevOps Secrets Vault
  9891. <a href="https://docs.delinea.com/online-help/products/devops-secrets-vault/current">https://docs.delinea.com/online-help/products/devops-secrets-vault/current</a></p>
  9892. </td>
  9893. </tr>
  9894. <tr>
  9895. <td>
  9896. <code>secretserver</code></br>
  9897. <em>
  9898. <a href="#external-secrets.io/v1.SecretServerProvider">
  9899. SecretServerProvider
  9900. </a>
  9901. </em>
  9902. </td>
  9903. <td>
  9904. <em>(Optional)</em>
  9905. <p>SecretServer configures this store to sync secrets using SecretServer provider
  9906. <a href="https://docs.delinea.com/online-help/secret-server/start.htm">https://docs.delinea.com/online-help/secret-server/start.htm</a></p>
  9907. </td>
  9908. </tr>
  9909. <tr>
  9910. <td>
  9911. <code>chef</code></br>
  9912. <em>
  9913. <a href="#external-secrets.io/v1.ChefProvider">
  9914. ChefProvider
  9915. </a>
  9916. </em>
  9917. </td>
  9918. <td>
  9919. <em>(Optional)</em>
  9920. <p>Chef configures this store to sync secrets with chef server</p>
  9921. </td>
  9922. </tr>
  9923. <tr>
  9924. <td>
  9925. <code>pulumi</code></br>
  9926. <em>
  9927. <a href="#external-secrets.io/v1.PulumiProvider">
  9928. PulumiProvider
  9929. </a>
  9930. </em>
  9931. </td>
  9932. <td>
  9933. <em>(Optional)</em>
  9934. <p>Pulumi configures this store to sync secrets using the Pulumi provider</p>
  9935. </td>
  9936. </tr>
  9937. <tr>
  9938. <td>
  9939. <code>fortanix</code></br>
  9940. <em>
  9941. <a href="#external-secrets.io/v1.FortanixProvider">
  9942. FortanixProvider
  9943. </a>
  9944. </em>
  9945. </td>
  9946. <td>
  9947. <em>(Optional)</em>
  9948. <p>Fortanix configures this store to sync secrets using the Fortanix provider</p>
  9949. </td>
  9950. </tr>
  9951. <tr>
  9952. <td>
  9953. <code>passworddepot</code></br>
  9954. <em>
  9955. <a href="#external-secrets.io/v1.PasswordDepotProvider">
  9956. PasswordDepotProvider
  9957. </a>
  9958. </em>
  9959. </td>
  9960. <td>
  9961. <em>(Optional)</em>
  9962. </td>
  9963. </tr>
  9964. <tr>
  9965. <td>
  9966. <code>passbolt</code></br>
  9967. <em>
  9968. <a href="#external-secrets.io/v1.PassboltProvider">
  9969. PassboltProvider
  9970. </a>
  9971. </em>
  9972. </td>
  9973. <td>
  9974. <em>(Optional)</em>
  9975. </td>
  9976. </tr>
  9977. <tr>
  9978. <td>
  9979. <code>device42</code></br>
  9980. <em>
  9981. <a href="#external-secrets.io/v1.Device42Provider">
  9982. Device42Provider
  9983. </a>
  9984. </em>
  9985. </td>
  9986. <td>
  9987. <em>(Optional)</em>
  9988. <p>Device42 configures this store to sync secrets using the Device42 provider</p>
  9989. </td>
  9990. </tr>
  9991. <tr>
  9992. <td>
  9993. <code>infisical</code></br>
  9994. <em>
  9995. <a href="#external-secrets.io/v1.InfisicalProvider">
  9996. InfisicalProvider
  9997. </a>
  9998. </em>
  9999. </td>
  10000. <td>
  10001. <em>(Optional)</em>
  10002. <p>Infisical configures this store to sync secrets using the Infisical provider</p>
  10003. </td>
  10004. </tr>
  10005. <tr>
  10006. <td>
  10007. <code>beyondtrust</code></br>
  10008. <em>
  10009. <a href="#external-secrets.io/v1.BeyondtrustProvider">
  10010. BeyondtrustProvider
  10011. </a>
  10012. </em>
  10013. </td>
  10014. <td>
  10015. <em>(Optional)</em>
  10016. <p>Beyondtrust configures this store to sync secrets using Password Safe provider.</p>
  10017. </td>
  10018. </tr>
  10019. <tr>
  10020. <td>
  10021. <code>cloudrusm</code></br>
  10022. <em>
  10023. <a href="#external-secrets.io/v1.CloudruSMProvider">
  10024. CloudruSMProvider
  10025. </a>
  10026. </em>
  10027. </td>
  10028. <td>
  10029. <em>(Optional)</em>
  10030. <p>CloudruSM configures this store to sync secrets using the Cloud.ru Secret Manager provider</p>
  10031. </td>
  10032. </tr>
  10033. <tr>
  10034. <td>
  10035. <code>volcengine</code></br>
  10036. <em>
  10037. <a href="#external-secrets.io/v1.VolcengineProvider">
  10038. VolcengineProvider
  10039. </a>
  10040. </em>
  10041. </td>
  10042. <td>
  10043. <em>(Optional)</em>
  10044. <p>Volcengine configures this store to sync secrets using the Volcengine provider</p>
  10045. </td>
  10046. </tr>
  10047. </tbody>
  10048. </table>
  10049. <h3 id="external-secrets.io/v1.SecretStoreRef">SecretStoreRef
  10050. </h3>
  10051. <p>
  10052. (<em>Appears on:</em>
  10053. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>,
  10054. <a href="#external-secrets.io/v1.StoreGeneratorSourceRef">StoreGeneratorSourceRef</a>,
  10055. <a href="#external-secrets.io/v1.StoreSourceRef">StoreSourceRef</a>)
  10056. </p>
  10057. <p>
  10058. <p>SecretStoreRef defines which SecretStore to fetch the ExternalSecret data.</p>
  10059. </p>
  10060. <table>
  10061. <thead>
  10062. <tr>
  10063. <th>Field</th>
  10064. <th>Description</th>
  10065. </tr>
  10066. </thead>
  10067. <tbody>
  10068. <tr>
  10069. <td>
  10070. <code>name</code></br>
  10071. <em>
  10072. string
  10073. </em>
  10074. </td>
  10075. <td>
  10076. <p>Name of the SecretStore resource</p>
  10077. </td>
  10078. </tr>
  10079. <tr>
  10080. <td>
  10081. <code>kind</code></br>
  10082. <em>
  10083. string
  10084. </em>
  10085. </td>
  10086. <td>
  10087. <em>(Optional)</em>
  10088. <p>Kind of the SecretStore resource (SecretStore or ClusterSecretStore)
  10089. Defaults to <code>SecretStore</code></p>
  10090. </td>
  10091. </tr>
  10092. </tbody>
  10093. </table>
  10094. <h3 id="external-secrets.io/v1.SecretStoreRetrySettings">SecretStoreRetrySettings
  10095. </h3>
  10096. <p>
  10097. (<em>Appears on:</em>
  10098. <a href="#external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec</a>)
  10099. </p>
  10100. <p>
  10101. </p>
  10102. <table>
  10103. <thead>
  10104. <tr>
  10105. <th>Field</th>
  10106. <th>Description</th>
  10107. </tr>
  10108. </thead>
  10109. <tbody>
  10110. <tr>
  10111. <td>
  10112. <code>maxRetries</code></br>
  10113. <em>
  10114. int32
  10115. </em>
  10116. </td>
  10117. <td>
  10118. </td>
  10119. </tr>
  10120. <tr>
  10121. <td>
  10122. <code>retryInterval</code></br>
  10123. <em>
  10124. string
  10125. </em>
  10126. </td>
  10127. <td>
  10128. </td>
  10129. </tr>
  10130. </tbody>
  10131. </table>
  10132. <h3 id="external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec
  10133. </h3>
  10134. <p>
  10135. (<em>Appears on:</em>
  10136. <a href="#external-secrets.io/v1.ClusterSecretStore">ClusterSecretStore</a>,
  10137. <a href="#external-secrets.io/v1.SecretStore">SecretStore</a>)
  10138. </p>
  10139. <p>
  10140. <p>SecretStoreSpec defines the desired state of SecretStore.</p>
  10141. </p>
  10142. <table>
  10143. <thead>
  10144. <tr>
  10145. <th>Field</th>
  10146. <th>Description</th>
  10147. </tr>
  10148. </thead>
  10149. <tbody>
  10150. <tr>
  10151. <td>
  10152. <code>controller</code></br>
  10153. <em>
  10154. string
  10155. </em>
  10156. </td>
  10157. <td>
  10158. <em>(Optional)</em>
  10159. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  10160. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  10161. </td>
  10162. </tr>
  10163. <tr>
  10164. <td>
  10165. <code>provider</code></br>
  10166. <em>
  10167. <a href="#external-secrets.io/v1.SecretStoreProvider">
  10168. SecretStoreProvider
  10169. </a>
  10170. </em>
  10171. </td>
  10172. <td>
  10173. <p>Used to configure the provider. Only one provider may be set</p>
  10174. </td>
  10175. </tr>
  10176. <tr>
  10177. <td>
  10178. <code>retrySettings</code></br>
  10179. <em>
  10180. <a href="#external-secrets.io/v1.SecretStoreRetrySettings">
  10181. SecretStoreRetrySettings
  10182. </a>
  10183. </em>
  10184. </td>
  10185. <td>
  10186. <em>(Optional)</em>
  10187. <p>Used to configure http retries if failed</p>
  10188. </td>
  10189. </tr>
  10190. <tr>
  10191. <td>
  10192. <code>refreshInterval</code></br>
  10193. <em>
  10194. int
  10195. </em>
  10196. </td>
  10197. <td>
  10198. <em>(Optional)</em>
  10199. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  10200. </td>
  10201. </tr>
  10202. <tr>
  10203. <td>
  10204. <code>conditions</code></br>
  10205. <em>
  10206. <a href="#external-secrets.io/v1.ClusterSecretStoreCondition">
  10207. []ClusterSecretStoreCondition
  10208. </a>
  10209. </em>
  10210. </td>
  10211. <td>
  10212. <em>(Optional)</em>
  10213. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  10214. </td>
  10215. </tr>
  10216. </tbody>
  10217. </table>
  10218. <h3 id="external-secrets.io/v1.SecretStoreStatus">SecretStoreStatus
  10219. </h3>
  10220. <p>
  10221. (<em>Appears on:</em>
  10222. <a href="#external-secrets.io/v1.ClusterSecretStore">ClusterSecretStore</a>,
  10223. <a href="#external-secrets.io/v1.SecretStore">SecretStore</a>)
  10224. </p>
  10225. <p>
  10226. <p>SecretStoreStatus defines the observed state of the SecretStore.</p>
  10227. </p>
  10228. <table>
  10229. <thead>
  10230. <tr>
  10231. <th>Field</th>
  10232. <th>Description</th>
  10233. </tr>
  10234. </thead>
  10235. <tbody>
  10236. <tr>
  10237. <td>
  10238. <code>conditions</code></br>
  10239. <em>
  10240. <a href="#external-secrets.io/v1.SecretStoreStatusCondition">
  10241. []SecretStoreStatusCondition
  10242. </a>
  10243. </em>
  10244. </td>
  10245. <td>
  10246. <em>(Optional)</em>
  10247. </td>
  10248. </tr>
  10249. <tr>
  10250. <td>
  10251. <code>capabilities</code></br>
  10252. <em>
  10253. <a href="#external-secrets.io/v1.SecretStoreCapabilities">
  10254. SecretStoreCapabilities
  10255. </a>
  10256. </em>
  10257. </td>
  10258. <td>
  10259. <em>(Optional)</em>
  10260. </td>
  10261. </tr>
  10262. </tbody>
  10263. </table>
  10264. <h3 id="external-secrets.io/v1.SecretStoreStatusCondition">SecretStoreStatusCondition
  10265. </h3>
  10266. <p>
  10267. (<em>Appears on:</em>
  10268. <a href="#external-secrets.io/v1.SecretStoreStatus">SecretStoreStatus</a>)
  10269. </p>
  10270. <p>
  10271. </p>
  10272. <table>
  10273. <thead>
  10274. <tr>
  10275. <th>Field</th>
  10276. <th>Description</th>
  10277. </tr>
  10278. </thead>
  10279. <tbody>
  10280. <tr>
  10281. <td>
  10282. <code>type</code></br>
  10283. <em>
  10284. <a href="#external-secrets.io/v1.SecretStoreConditionType">
  10285. SecretStoreConditionType
  10286. </a>
  10287. </em>
  10288. </td>
  10289. <td>
  10290. </td>
  10291. </tr>
  10292. <tr>
  10293. <td>
  10294. <code>status</code></br>
  10295. <em>
  10296. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  10297. Kubernetes core/v1.ConditionStatus
  10298. </a>
  10299. </em>
  10300. </td>
  10301. <td>
  10302. </td>
  10303. </tr>
  10304. <tr>
  10305. <td>
  10306. <code>reason</code></br>
  10307. <em>
  10308. string
  10309. </em>
  10310. </td>
  10311. <td>
  10312. <em>(Optional)</em>
  10313. </td>
  10314. </tr>
  10315. <tr>
  10316. <td>
  10317. <code>message</code></br>
  10318. <em>
  10319. string
  10320. </em>
  10321. </td>
  10322. <td>
  10323. <em>(Optional)</em>
  10324. </td>
  10325. </tr>
  10326. <tr>
  10327. <td>
  10328. <code>lastTransitionTime</code></br>
  10329. <em>
  10330. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  10331. Kubernetes meta/v1.Time
  10332. </a>
  10333. </em>
  10334. </td>
  10335. <td>
  10336. <em>(Optional)</em>
  10337. </td>
  10338. </tr>
  10339. </tbody>
  10340. </table>
  10341. <h3 id="external-secrets.io/v1.SecretsClient">SecretsClient
  10342. </h3>
  10343. <p>
  10344. <p>SecretsClient provides access to secrets.</p>
  10345. </p>
  10346. <h3 id="external-secrets.io/v1.SecretsManager">SecretsManager
  10347. </h3>
  10348. <p>
  10349. (<em>Appears on:</em>
  10350. <a href="#external-secrets.io/v1.AWSProvider">AWSProvider</a>)
  10351. </p>
  10352. <p>
  10353. <p>SecretsManager defines how the provider behaves when interacting with AWS
  10354. SecretsManager. Some of these settings are only applicable to controlling how
  10355. secrets are deleted, and hence only apply to PushSecret (and only when
  10356. deletionPolicy is set to Delete).</p>
  10357. </p>
  10358. <table>
  10359. <thead>
  10360. <tr>
  10361. <th>Field</th>
  10362. <th>Description</th>
  10363. </tr>
  10364. </thead>
  10365. <tbody>
  10366. <tr>
  10367. <td>
  10368. <code>forceDeleteWithoutRecovery</code></br>
  10369. <em>
  10370. bool
  10371. </em>
  10372. </td>
  10373. <td>
  10374. <em>(Optional)</em>
  10375. <p>Specifies whether to delete the secret without any recovery window. You
  10376. can&rsquo;t use both this parameter and RecoveryWindowInDays in the same call.
  10377. If you don&rsquo;t use either, then by default Secrets Manager uses a 30 day
  10378. recovery window.
  10379. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-ForceDeleteWithoutRecovery">https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-ForceDeleteWithoutRecovery</a></p>
  10380. </td>
  10381. </tr>
  10382. <tr>
  10383. <td>
  10384. <code>recoveryWindowInDays</code></br>
  10385. <em>
  10386. int64
  10387. </em>
  10388. </td>
  10389. <td>
  10390. <em>(Optional)</em>
  10391. <p>The number of days from 7 to 30 that Secrets Manager waits before
  10392. permanently deleting the secret. You can&rsquo;t use both this parameter and
  10393. ForceDeleteWithoutRecovery in the same call. If you don&rsquo;t use either,
  10394. then by default Secrets Manager uses a 30 day recovery window.
  10395. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-RecoveryWindowInDays">https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-RecoveryWindowInDays</a></p>
  10396. </td>
  10397. </tr>
  10398. </tbody>
  10399. </table>
  10400. <h3 id="external-secrets.io/v1.SenhaseguraAuth">SenhaseguraAuth
  10401. </h3>
  10402. <p>
  10403. (<em>Appears on:</em>
  10404. <a href="#external-secrets.io/v1.SenhaseguraProvider">SenhaseguraProvider</a>)
  10405. </p>
  10406. <p>
  10407. <p>SenhaseguraAuth tells the controller how to do auth in senhasegura.</p>
  10408. </p>
  10409. <table>
  10410. <thead>
  10411. <tr>
  10412. <th>Field</th>
  10413. <th>Description</th>
  10414. </tr>
  10415. </thead>
  10416. <tbody>
  10417. <tr>
  10418. <td>
  10419. <code>clientId</code></br>
  10420. <em>
  10421. string
  10422. </em>
  10423. </td>
  10424. <td>
  10425. </td>
  10426. </tr>
  10427. <tr>
  10428. <td>
  10429. <code>clientSecretSecretRef</code></br>
  10430. <em>
  10431. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10432. External Secrets meta/v1.SecretKeySelector
  10433. </a>
  10434. </em>
  10435. </td>
  10436. <td>
  10437. </td>
  10438. </tr>
  10439. </tbody>
  10440. </table>
  10441. <h3 id="external-secrets.io/v1.SenhaseguraModuleType">SenhaseguraModuleType
  10442. (<code>string</code> alias)</p></h3>
  10443. <p>
  10444. (<em>Appears on:</em>
  10445. <a href="#external-secrets.io/v1.SenhaseguraProvider">SenhaseguraProvider</a>)
  10446. </p>
  10447. <p>
  10448. <p>SenhaseguraModuleType enum defines senhasegura target module to fetch secrets</p>
  10449. </p>
  10450. <table>
  10451. <thead>
  10452. <tr>
  10453. <th>Value</th>
  10454. <th>Description</th>
  10455. </tr>
  10456. </thead>
  10457. <tbody><tr><td><p>&#34;DSM&#34;</p></td>
  10458. <td><pre><code> SenhaseguraModuleDSM is the senhasegura DevOps Secrets Management module
  10459. see: https://senhasegura.com/devops
  10460. </code></pre>
  10461. </td>
  10462. </tr></tbody>
  10463. </table>
  10464. <h3 id="external-secrets.io/v1.SenhaseguraProvider">SenhaseguraProvider
  10465. </h3>
  10466. <p>
  10467. (<em>Appears on:</em>
  10468. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  10469. </p>
  10470. <p>
  10471. <p>SenhaseguraProvider setup a store to sync secrets with senhasegura.</p>
  10472. </p>
  10473. <table>
  10474. <thead>
  10475. <tr>
  10476. <th>Field</th>
  10477. <th>Description</th>
  10478. </tr>
  10479. </thead>
  10480. <tbody>
  10481. <tr>
  10482. <td>
  10483. <code>url</code></br>
  10484. <em>
  10485. string
  10486. </em>
  10487. </td>
  10488. <td>
  10489. <p>URL of senhasegura</p>
  10490. </td>
  10491. </tr>
  10492. <tr>
  10493. <td>
  10494. <code>module</code></br>
  10495. <em>
  10496. <a href="#external-secrets.io/v1.SenhaseguraModuleType">
  10497. SenhaseguraModuleType
  10498. </a>
  10499. </em>
  10500. </td>
  10501. <td>
  10502. <p>Module defines which senhasegura module should be used to get secrets</p>
  10503. </td>
  10504. </tr>
  10505. <tr>
  10506. <td>
  10507. <code>auth</code></br>
  10508. <em>
  10509. <a href="#external-secrets.io/v1.SenhaseguraAuth">
  10510. SenhaseguraAuth
  10511. </a>
  10512. </em>
  10513. </td>
  10514. <td>
  10515. <p>Auth defines parameters to authenticate in senhasegura</p>
  10516. </td>
  10517. </tr>
  10518. <tr>
  10519. <td>
  10520. <code>ignoreSslCertificate</code></br>
  10521. <em>
  10522. bool
  10523. </em>
  10524. </td>
  10525. <td>
  10526. <p>IgnoreSslCertificate defines if SSL certificate must be ignored</p>
  10527. </td>
  10528. </tr>
  10529. </tbody>
  10530. </table>
  10531. <h3 id="external-secrets.io/v1.StoreGeneratorSourceRef">StoreGeneratorSourceRef
  10532. </h3>
  10533. <p>
  10534. (<em>Appears on:</em>
  10535. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  10536. </p>
  10537. <p>
  10538. <p>StoreGeneratorSourceRef allows you to override the source
  10539. from which the secret will be pulled from.
  10540. You can define at maximum one property.</p>
  10541. </p>
  10542. <table>
  10543. <thead>
  10544. <tr>
  10545. <th>Field</th>
  10546. <th>Description</th>
  10547. </tr>
  10548. </thead>
  10549. <tbody>
  10550. <tr>
  10551. <td>
  10552. <code>storeRef</code></br>
  10553. <em>
  10554. <a href="#external-secrets.io/v1.SecretStoreRef">
  10555. SecretStoreRef
  10556. </a>
  10557. </em>
  10558. </td>
  10559. <td>
  10560. <em>(Optional)</em>
  10561. </td>
  10562. </tr>
  10563. <tr>
  10564. <td>
  10565. <code>generatorRef</code></br>
  10566. <em>
  10567. <a href="#external-secrets.io/v1.GeneratorRef">
  10568. GeneratorRef
  10569. </a>
  10570. </em>
  10571. </td>
  10572. <td>
  10573. <em>(Optional)</em>
  10574. <p>GeneratorRef points to a generator custom resource.</p>
  10575. </td>
  10576. </tr>
  10577. </tbody>
  10578. </table>
  10579. <h3 id="external-secrets.io/v1.StoreSourceRef">StoreSourceRef
  10580. </h3>
  10581. <p>
  10582. (<em>Appears on:</em>
  10583. <a href="#external-secrets.io/v1.ExternalSecretData">ExternalSecretData</a>)
  10584. </p>
  10585. <p>
  10586. <p>StoreSourceRef allows you to override the SecretStore source
  10587. from which the secret will be pulled from.
  10588. You can define at maximum one property.</p>
  10589. </p>
  10590. <table>
  10591. <thead>
  10592. <tr>
  10593. <th>Field</th>
  10594. <th>Description</th>
  10595. </tr>
  10596. </thead>
  10597. <tbody>
  10598. <tr>
  10599. <td>
  10600. <code>storeRef</code></br>
  10601. <em>
  10602. <a href="#external-secrets.io/v1.SecretStoreRef">
  10603. SecretStoreRef
  10604. </a>
  10605. </em>
  10606. </td>
  10607. <td>
  10608. <em>(Optional)</em>
  10609. </td>
  10610. </tr>
  10611. <tr>
  10612. <td>
  10613. <code>generatorRef</code></br>
  10614. <em>
  10615. <a href="#external-secrets.io/v1.GeneratorRef">
  10616. GeneratorRef
  10617. </a>
  10618. </em>
  10619. </td>
  10620. <td>
  10621. <p>GeneratorRef points to a generator custom resource.</p>
  10622. <p>Deprecated: The generatorRef is not implemented in .data[].
  10623. this will be removed with v1.</p>
  10624. </td>
  10625. </tr>
  10626. </tbody>
  10627. </table>
  10628. <h3 id="external-secrets.io/v1.Tag">Tag
  10629. </h3>
  10630. <p>
  10631. </p>
  10632. <table>
  10633. <thead>
  10634. <tr>
  10635. <th>Field</th>
  10636. <th>Description</th>
  10637. </tr>
  10638. </thead>
  10639. <tbody>
  10640. <tr>
  10641. <td>
  10642. <code>key</code></br>
  10643. <em>
  10644. string
  10645. </em>
  10646. </td>
  10647. <td>
  10648. </td>
  10649. </tr>
  10650. <tr>
  10651. <td>
  10652. <code>value</code></br>
  10653. <em>
  10654. string
  10655. </em>
  10656. </td>
  10657. <td>
  10658. </td>
  10659. </tr>
  10660. </tbody>
  10661. </table>
  10662. <h3 id="external-secrets.io/v1.TemplateEngineVersion">TemplateEngineVersion
  10663. (<code>string</code> alias)</p></h3>
  10664. <p>
  10665. (<em>Appears on:</em>
  10666. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  10667. </p>
  10668. <p>
  10669. </p>
  10670. <table>
  10671. <thead>
  10672. <tr>
  10673. <th>Value</th>
  10674. <th>Description</th>
  10675. </tr>
  10676. </thead>
  10677. <tbody><tr><td><p>&#34;v2&#34;</p></td>
  10678. <td></td>
  10679. </tr></tbody>
  10680. </table>
  10681. <h3 id="external-secrets.io/v1.TemplateFrom">TemplateFrom
  10682. </h3>
  10683. <p>
  10684. (<em>Appears on:</em>
  10685. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  10686. </p>
  10687. <p>
  10688. </p>
  10689. <table>
  10690. <thead>
  10691. <tr>
  10692. <th>Field</th>
  10693. <th>Description</th>
  10694. </tr>
  10695. </thead>
  10696. <tbody>
  10697. <tr>
  10698. <td>
  10699. <code>configMap</code></br>
  10700. <em>
  10701. <a href="#external-secrets.io/v1.TemplateRef">
  10702. TemplateRef
  10703. </a>
  10704. </em>
  10705. </td>
  10706. <td>
  10707. </td>
  10708. </tr>
  10709. <tr>
  10710. <td>
  10711. <code>secret</code></br>
  10712. <em>
  10713. <a href="#external-secrets.io/v1.TemplateRef">
  10714. TemplateRef
  10715. </a>
  10716. </em>
  10717. </td>
  10718. <td>
  10719. </td>
  10720. </tr>
  10721. <tr>
  10722. <td>
  10723. <code>target</code></br>
  10724. <em>
  10725. <a href="#external-secrets.io/v1.TemplateTarget">
  10726. TemplateTarget
  10727. </a>
  10728. </em>
  10729. </td>
  10730. <td>
  10731. <em>(Optional)</em>
  10732. </td>
  10733. </tr>
  10734. <tr>
  10735. <td>
  10736. <code>literal</code></br>
  10737. <em>
  10738. string
  10739. </em>
  10740. </td>
  10741. <td>
  10742. <em>(Optional)</em>
  10743. </td>
  10744. </tr>
  10745. </tbody>
  10746. </table>
  10747. <h3 id="external-secrets.io/v1.TemplateMergePolicy">TemplateMergePolicy
  10748. (<code>string</code> alias)</p></h3>
  10749. <p>
  10750. (<em>Appears on:</em>
  10751. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  10752. </p>
  10753. <p>
  10754. </p>
  10755. <table>
  10756. <thead>
  10757. <tr>
  10758. <th>Value</th>
  10759. <th>Description</th>
  10760. </tr>
  10761. </thead>
  10762. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  10763. <td></td>
  10764. </tr><tr><td><p>&#34;Replace&#34;</p></td>
  10765. <td></td>
  10766. </tr></tbody>
  10767. </table>
  10768. <h3 id="external-secrets.io/v1.TemplateRef">TemplateRef
  10769. </h3>
  10770. <p>
  10771. (<em>Appears on:</em>
  10772. <a href="#external-secrets.io/v1.TemplateFrom">TemplateFrom</a>)
  10773. </p>
  10774. <p>
  10775. </p>
  10776. <table>
  10777. <thead>
  10778. <tr>
  10779. <th>Field</th>
  10780. <th>Description</th>
  10781. </tr>
  10782. </thead>
  10783. <tbody>
  10784. <tr>
  10785. <td>
  10786. <code>name</code></br>
  10787. <em>
  10788. string
  10789. </em>
  10790. </td>
  10791. <td>
  10792. <p>The name of the ConfigMap/Secret resource</p>
  10793. </td>
  10794. </tr>
  10795. <tr>
  10796. <td>
  10797. <code>items</code></br>
  10798. <em>
  10799. <a href="#external-secrets.io/v1.TemplateRefItem">
  10800. []TemplateRefItem
  10801. </a>
  10802. </em>
  10803. </td>
  10804. <td>
  10805. <p>A list of keys in the ConfigMap/Secret to use as templates for Secret data</p>
  10806. </td>
  10807. </tr>
  10808. </tbody>
  10809. </table>
  10810. <h3 id="external-secrets.io/v1.TemplateRefItem">TemplateRefItem
  10811. </h3>
  10812. <p>
  10813. (<em>Appears on:</em>
  10814. <a href="#external-secrets.io/v1.TemplateRef">TemplateRef</a>)
  10815. </p>
  10816. <p>
  10817. </p>
  10818. <table>
  10819. <thead>
  10820. <tr>
  10821. <th>Field</th>
  10822. <th>Description</th>
  10823. </tr>
  10824. </thead>
  10825. <tbody>
  10826. <tr>
  10827. <td>
  10828. <code>key</code></br>
  10829. <em>
  10830. string
  10831. </em>
  10832. </td>
  10833. <td>
  10834. <p>A key in the ConfigMap/Secret</p>
  10835. </td>
  10836. </tr>
  10837. <tr>
  10838. <td>
  10839. <code>templateAs</code></br>
  10840. <em>
  10841. <a href="#external-secrets.io/v1.TemplateScope">
  10842. TemplateScope
  10843. </a>
  10844. </em>
  10845. </td>
  10846. <td>
  10847. </td>
  10848. </tr>
  10849. </tbody>
  10850. </table>
  10851. <h3 id="external-secrets.io/v1.TemplateScope">TemplateScope
  10852. (<code>string</code> alias)</p></h3>
  10853. <p>
  10854. (<em>Appears on:</em>
  10855. <a href="#external-secrets.io/v1.TemplateRefItem">TemplateRefItem</a>)
  10856. </p>
  10857. <p>
  10858. </p>
  10859. <table>
  10860. <thead>
  10861. <tr>
  10862. <th>Value</th>
  10863. <th>Description</th>
  10864. </tr>
  10865. </thead>
  10866. <tbody><tr><td><p>&#34;KeysAndValues&#34;</p></td>
  10867. <td></td>
  10868. </tr><tr><td><p>&#34;Values&#34;</p></td>
  10869. <td></td>
  10870. </tr></tbody>
  10871. </table>
  10872. <h3 id="external-secrets.io/v1.TemplateTarget">TemplateTarget
  10873. (<code>string</code> alias)</p></h3>
  10874. <p>
  10875. (<em>Appears on:</em>
  10876. <a href="#external-secrets.io/v1.TemplateFrom">TemplateFrom</a>)
  10877. </p>
  10878. <p>
  10879. </p>
  10880. <table>
  10881. <thead>
  10882. <tr>
  10883. <th>Value</th>
  10884. <th>Description</th>
  10885. </tr>
  10886. </thead>
  10887. <tbody><tr><td><p>&#34;Annotations&#34;</p></td>
  10888. <td></td>
  10889. </tr><tr><td><p>&#34;Data&#34;</p></td>
  10890. <td></td>
  10891. </tr><tr><td><p>&#34;Labels&#34;</p></td>
  10892. <td></td>
  10893. </tr></tbody>
  10894. </table>
  10895. <h3 id="external-secrets.io/v1.TokenAuth">TokenAuth
  10896. </h3>
  10897. <p>
  10898. (<em>Appears on:</em>
  10899. <a href="#external-secrets.io/v1.KubernetesAuth">KubernetesAuth</a>)
  10900. </p>
  10901. <p>
  10902. </p>
  10903. <table>
  10904. <thead>
  10905. <tr>
  10906. <th>Field</th>
  10907. <th>Description</th>
  10908. </tr>
  10909. </thead>
  10910. <tbody>
  10911. <tr>
  10912. <td>
  10913. <code>bearerToken</code></br>
  10914. <em>
  10915. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10916. External Secrets meta/v1.SecretKeySelector
  10917. </a>
  10918. </em>
  10919. </td>
  10920. <td>
  10921. </td>
  10922. </tr>
  10923. </tbody>
  10924. </table>
  10925. <h3 id="external-secrets.io/v1.TokenAuthCredentials">TokenAuthCredentials
  10926. </h3>
  10927. <p>
  10928. (<em>Appears on:</em>
  10929. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  10930. </p>
  10931. <p>
  10932. </p>
  10933. <table>
  10934. <thead>
  10935. <tr>
  10936. <th>Field</th>
  10937. <th>Description</th>
  10938. </tr>
  10939. </thead>
  10940. <tbody>
  10941. <tr>
  10942. <td>
  10943. <code>accessToken</code></br>
  10944. <em>
  10945. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10946. External Secrets meta/v1.SecretKeySelector
  10947. </a>
  10948. </em>
  10949. </td>
  10950. <td>
  10951. </td>
  10952. </tr>
  10953. </tbody>
  10954. </table>
  10955. <h3 id="external-secrets.io/v1.UniversalAuthCredentials">UniversalAuthCredentials
  10956. </h3>
  10957. <p>
  10958. (<em>Appears on:</em>
  10959. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  10960. </p>
  10961. <p>
  10962. </p>
  10963. <table>
  10964. <thead>
  10965. <tr>
  10966. <th>Field</th>
  10967. <th>Description</th>
  10968. </tr>
  10969. </thead>
  10970. <tbody>
  10971. <tr>
  10972. <td>
  10973. <code>clientId</code></br>
  10974. <em>
  10975. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10976. External Secrets meta/v1.SecretKeySelector
  10977. </a>
  10978. </em>
  10979. </td>
  10980. <td>
  10981. </td>
  10982. </tr>
  10983. <tr>
  10984. <td>
  10985. <code>clientSecret</code></br>
  10986. <em>
  10987. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10988. External Secrets meta/v1.SecretKeySelector
  10989. </a>
  10990. </em>
  10991. </td>
  10992. <td>
  10993. </td>
  10994. </tr>
  10995. </tbody>
  10996. </table>
  10997. <h3 id="external-secrets.io/v1.ValidationResult">ValidationResult
  10998. (<code>byte</code> alias)</p></h3>
  10999. <p>
  11000. (<em>Appears on:</em>
  11001. <a href="#external-secrets.io/v1.FakeProvider">FakeProvider</a>)
  11002. </p>
  11003. <p>
  11004. </p>
  11005. <table>
  11006. <thead>
  11007. <tr>
  11008. <th>Value</th>
  11009. <th>Description</th>
  11010. </tr>
  11011. </thead>
  11012. <tbody><tr><td><p>2</p></td>
  11013. <td><p>Error indicates that there is a misconfiguration.</p>
  11014. </td>
  11015. </tr><tr><td><p>0</p></td>
  11016. <td><p>Ready indicates that the client is configured correctly
  11017. and can be used.</p>
  11018. </td>
  11019. </tr><tr><td><p>1</p></td>
  11020. <td><p>Unknown indicates that the client can be used
  11021. but information is missing and it can not be validated.</p>
  11022. </td>
  11023. </tr></tbody>
  11024. </table>
  11025. <h3 id="external-secrets.io/v1.VaultAppRole">VaultAppRole
  11026. </h3>
  11027. <p>
  11028. (<em>Appears on:</em>
  11029. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  11030. </p>
  11031. <p>
  11032. <p>VaultAppRole authenticates with Vault using the App Role auth mechanism,
  11033. with the role and secret stored in a Kubernetes Secret resource.</p>
  11034. </p>
  11035. <table>
  11036. <thead>
  11037. <tr>
  11038. <th>Field</th>
  11039. <th>Description</th>
  11040. </tr>
  11041. </thead>
  11042. <tbody>
  11043. <tr>
  11044. <td>
  11045. <code>path</code></br>
  11046. <em>
  11047. string
  11048. </em>
  11049. </td>
  11050. <td>
  11051. <p>Path where the App Role authentication backend is mounted
  11052. in Vault, e.g: &ldquo;approle&rdquo;</p>
  11053. </td>
  11054. </tr>
  11055. <tr>
  11056. <td>
  11057. <code>roleId</code></br>
  11058. <em>
  11059. string
  11060. </em>
  11061. </td>
  11062. <td>
  11063. <em>(Optional)</em>
  11064. <p>RoleID configured in the App Role authentication backend when setting
  11065. up the authentication backend in Vault.</p>
  11066. </td>
  11067. </tr>
  11068. <tr>
  11069. <td>
  11070. <code>roleRef</code></br>
  11071. <em>
  11072. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11073. External Secrets meta/v1.SecretKeySelector
  11074. </a>
  11075. </em>
  11076. </td>
  11077. <td>
  11078. <em>(Optional)</em>
  11079. <p>Reference to a key in a Secret that contains the App Role ID used
  11080. to authenticate with Vault.
  11081. The <code>key</code> field must be specified and denotes which entry within the Secret
  11082. resource is used as the app role id.</p>
  11083. </td>
  11084. </tr>
  11085. <tr>
  11086. <td>
  11087. <code>secretRef</code></br>
  11088. <em>
  11089. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11090. External Secrets meta/v1.SecretKeySelector
  11091. </a>
  11092. </em>
  11093. </td>
  11094. <td>
  11095. <p>Reference to a key in a Secret that contains the App Role secret used
  11096. to authenticate with Vault.
  11097. The <code>key</code> field must be specified and denotes which entry within the Secret
  11098. resource is used as the app role secret.</p>
  11099. </td>
  11100. </tr>
  11101. </tbody>
  11102. </table>
  11103. <h3 id="external-secrets.io/v1.VaultAuth">VaultAuth
  11104. </h3>
  11105. <p>
  11106. (<em>Appears on:</em>
  11107. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  11108. </p>
  11109. <p>
  11110. <p>VaultAuth is the configuration used to authenticate with a Vault server.
  11111. Only one of <code>tokenSecretRef</code>, <code>appRole</code>, <code>kubernetes</code>, <code>ldap</code>, <code>userPass</code>, <code>jwt</code> or <code>cert</code>
  11112. can be specified. A namespace to authenticate against can optionally be specified.</p>
  11113. </p>
  11114. <table>
  11115. <thead>
  11116. <tr>
  11117. <th>Field</th>
  11118. <th>Description</th>
  11119. </tr>
  11120. </thead>
  11121. <tbody>
  11122. <tr>
  11123. <td>
  11124. <code>namespace</code></br>
  11125. <em>
  11126. string
  11127. </em>
  11128. </td>
  11129. <td>
  11130. <em>(Optional)</em>
  11131. <p>Name of the vault namespace to authenticate to. This can be different than the namespace your secret is in.
  11132. Namespaces is a set of features within Vault Enterprise that allows
  11133. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  11134. More about namespaces can be found here <a href="https://www.vaultproject.io/docs/enterprise/namespaces">https://www.vaultproject.io/docs/enterprise/namespaces</a>
  11135. This will default to Vault.Namespace field if set, or empty otherwise</p>
  11136. </td>
  11137. </tr>
  11138. <tr>
  11139. <td>
  11140. <code>tokenSecretRef</code></br>
  11141. <em>
  11142. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11143. External Secrets meta/v1.SecretKeySelector
  11144. </a>
  11145. </em>
  11146. </td>
  11147. <td>
  11148. <em>(Optional)</em>
  11149. <p>TokenSecretRef authenticates with Vault by presenting a token.</p>
  11150. </td>
  11151. </tr>
  11152. <tr>
  11153. <td>
  11154. <code>appRole</code></br>
  11155. <em>
  11156. <a href="#external-secrets.io/v1.VaultAppRole">
  11157. VaultAppRole
  11158. </a>
  11159. </em>
  11160. </td>
  11161. <td>
  11162. <em>(Optional)</em>
  11163. <p>AppRole authenticates with Vault using the App Role auth mechanism,
  11164. with the role and secret stored in a Kubernetes Secret resource.</p>
  11165. </td>
  11166. </tr>
  11167. <tr>
  11168. <td>
  11169. <code>kubernetes</code></br>
  11170. <em>
  11171. <a href="#external-secrets.io/v1.VaultKubernetesAuth">
  11172. VaultKubernetesAuth
  11173. </a>
  11174. </em>
  11175. </td>
  11176. <td>
  11177. <em>(Optional)</em>
  11178. <p>Kubernetes authenticates with Vault by passing the ServiceAccount
  11179. token stored in the named Secret resource to the Vault server.</p>
  11180. </td>
  11181. </tr>
  11182. <tr>
  11183. <td>
  11184. <code>ldap</code></br>
  11185. <em>
  11186. <a href="#external-secrets.io/v1.VaultLdapAuth">
  11187. VaultLdapAuth
  11188. </a>
  11189. </em>
  11190. </td>
  11191. <td>
  11192. <em>(Optional)</em>
  11193. <p>Ldap authenticates with Vault by passing username/password pair using
  11194. the LDAP authentication method</p>
  11195. </td>
  11196. </tr>
  11197. <tr>
  11198. <td>
  11199. <code>jwt</code></br>
  11200. <em>
  11201. <a href="#external-secrets.io/v1.VaultJwtAuth">
  11202. VaultJwtAuth
  11203. </a>
  11204. </em>
  11205. </td>
  11206. <td>
  11207. <em>(Optional)</em>
  11208. <p>Jwt authenticates with Vault by passing role and JWT token using the
  11209. JWT/OIDC authentication method</p>
  11210. </td>
  11211. </tr>
  11212. <tr>
  11213. <td>
  11214. <code>cert</code></br>
  11215. <em>
  11216. <a href="#external-secrets.io/v1.VaultCertAuth">
  11217. VaultCertAuth
  11218. </a>
  11219. </em>
  11220. </td>
  11221. <td>
  11222. <em>(Optional)</em>
  11223. <p>Cert authenticates with TLS Certificates by passing client certificate, private key and ca certificate
  11224. Cert authentication method</p>
  11225. </td>
  11226. </tr>
  11227. <tr>
  11228. <td>
  11229. <code>iam</code></br>
  11230. <em>
  11231. <a href="#external-secrets.io/v1.VaultIamAuth">
  11232. VaultIamAuth
  11233. </a>
  11234. </em>
  11235. </td>
  11236. <td>
  11237. <em>(Optional)</em>
  11238. <p>Iam authenticates with vault by passing a special AWS request signed with AWS IAM credentials
  11239. AWS IAM authentication method</p>
  11240. </td>
  11241. </tr>
  11242. <tr>
  11243. <td>
  11244. <code>userPass</code></br>
  11245. <em>
  11246. <a href="#external-secrets.io/v1.VaultUserPassAuth">
  11247. VaultUserPassAuth
  11248. </a>
  11249. </em>
  11250. </td>
  11251. <td>
  11252. <em>(Optional)</em>
  11253. <p>UserPass authenticates with Vault by passing username/password pair</p>
  11254. </td>
  11255. </tr>
  11256. </tbody>
  11257. </table>
  11258. <h3 id="external-secrets.io/v1.VaultAwsAuth">VaultAwsAuth
  11259. </h3>
  11260. <p>
  11261. <p>VaultAwsAuth tells the controller how to do authentication with aws.
  11262. Only one of secretRef or jwt can be specified.
  11263. if none is specified the controller will try to load credentials from its own service account assuming it is IRSA enabled.</p>
  11264. </p>
  11265. <table>
  11266. <thead>
  11267. <tr>
  11268. <th>Field</th>
  11269. <th>Description</th>
  11270. </tr>
  11271. </thead>
  11272. <tbody>
  11273. <tr>
  11274. <td>
  11275. <code>secretRef</code></br>
  11276. <em>
  11277. <a href="#external-secrets.io/v1.VaultAwsAuthSecretRef">
  11278. VaultAwsAuthSecretRef
  11279. </a>
  11280. </em>
  11281. </td>
  11282. <td>
  11283. <em>(Optional)</em>
  11284. </td>
  11285. </tr>
  11286. <tr>
  11287. <td>
  11288. <code>jwt</code></br>
  11289. <em>
  11290. <a href="#external-secrets.io/v1.VaultAwsJWTAuth">
  11291. VaultAwsJWTAuth
  11292. </a>
  11293. </em>
  11294. </td>
  11295. <td>
  11296. <em>(Optional)</em>
  11297. </td>
  11298. </tr>
  11299. </tbody>
  11300. </table>
  11301. <h3 id="external-secrets.io/v1.VaultAwsAuthSecretRef">VaultAwsAuthSecretRef
  11302. </h3>
  11303. <p>
  11304. (<em>Appears on:</em>
  11305. <a href="#external-secrets.io/v1.VaultAwsAuth">VaultAwsAuth</a>,
  11306. <a href="#external-secrets.io/v1.VaultIamAuth">VaultIamAuth</a>)
  11307. </p>
  11308. <p>
  11309. <p>VaultAWSAuthSecretRef holds secret references for AWS credentials
  11310. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  11311. </p>
  11312. <table>
  11313. <thead>
  11314. <tr>
  11315. <th>Field</th>
  11316. <th>Description</th>
  11317. </tr>
  11318. </thead>
  11319. <tbody>
  11320. <tr>
  11321. <td>
  11322. <code>accessKeyIDSecretRef</code></br>
  11323. <em>
  11324. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11325. External Secrets meta/v1.SecretKeySelector
  11326. </a>
  11327. </em>
  11328. </td>
  11329. <td>
  11330. <em>(Optional)</em>
  11331. <p>The AccessKeyID is used for authentication</p>
  11332. </td>
  11333. </tr>
  11334. <tr>
  11335. <td>
  11336. <code>secretAccessKeySecretRef</code></br>
  11337. <em>
  11338. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11339. External Secrets meta/v1.SecretKeySelector
  11340. </a>
  11341. </em>
  11342. </td>
  11343. <td>
  11344. <em>(Optional)</em>
  11345. <p>The SecretAccessKey is used for authentication</p>
  11346. </td>
  11347. </tr>
  11348. <tr>
  11349. <td>
  11350. <code>sessionTokenSecretRef</code></br>
  11351. <em>
  11352. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11353. External Secrets meta/v1.SecretKeySelector
  11354. </a>
  11355. </em>
  11356. </td>
  11357. <td>
  11358. <em>(Optional)</em>
  11359. <p>The SessionToken used for authentication
  11360. This must be defined if AccessKeyID and SecretAccessKey are temporary credentials
  11361. see: <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html">https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html</a></p>
  11362. </td>
  11363. </tr>
  11364. </tbody>
  11365. </table>
  11366. <h3 id="external-secrets.io/v1.VaultAwsJWTAuth">VaultAwsJWTAuth
  11367. </h3>
  11368. <p>
  11369. (<em>Appears on:</em>
  11370. <a href="#external-secrets.io/v1.VaultAwsAuth">VaultAwsAuth</a>,
  11371. <a href="#external-secrets.io/v1.VaultIamAuth">VaultIamAuth</a>)
  11372. </p>
  11373. <p>
  11374. <p>VaultAwsJWTAuth Authenticate against AWS using service account tokens.</p>
  11375. </p>
  11376. <table>
  11377. <thead>
  11378. <tr>
  11379. <th>Field</th>
  11380. <th>Description</th>
  11381. </tr>
  11382. </thead>
  11383. <tbody>
  11384. <tr>
  11385. <td>
  11386. <code>serviceAccountRef</code></br>
  11387. <em>
  11388. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  11389. External Secrets meta/v1.ServiceAccountSelector
  11390. </a>
  11391. </em>
  11392. </td>
  11393. <td>
  11394. <em>(Optional)</em>
  11395. </td>
  11396. </tr>
  11397. </tbody>
  11398. </table>
  11399. <h3 id="external-secrets.io/v1.VaultCertAuth">VaultCertAuth
  11400. </h3>
  11401. <p>
  11402. (<em>Appears on:</em>
  11403. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  11404. </p>
  11405. <p>
  11406. <p>VaultCertAuth authenticates with Vault using the JWT/OIDC authentication
  11407. method, with the role name and token stored in a Kubernetes Secret resource.</p>
  11408. </p>
  11409. <table>
  11410. <thead>
  11411. <tr>
  11412. <th>Field</th>
  11413. <th>Description</th>
  11414. </tr>
  11415. </thead>
  11416. <tbody>
  11417. <tr>
  11418. <td>
  11419. <code>clientCert</code></br>
  11420. <em>
  11421. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11422. External Secrets meta/v1.SecretKeySelector
  11423. </a>
  11424. </em>
  11425. </td>
  11426. <td>
  11427. <em>(Optional)</em>
  11428. <p>ClientCert is a certificate to authenticate using the Cert Vault
  11429. authentication method</p>
  11430. </td>
  11431. </tr>
  11432. <tr>
  11433. <td>
  11434. <code>secretRef</code></br>
  11435. <em>
  11436. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11437. External Secrets meta/v1.SecretKeySelector
  11438. </a>
  11439. </em>
  11440. </td>
  11441. <td>
  11442. <em>(Optional)</em>
  11443. <p>SecretRef to a key in a Secret resource containing client private key to
  11444. authenticate with Vault using the Cert authentication method</p>
  11445. </td>
  11446. </tr>
  11447. </tbody>
  11448. </table>
  11449. <h3 id="external-secrets.io/v1.VaultCheckAndSet">VaultCheckAndSet
  11450. </h3>
  11451. <p>
  11452. (<em>Appears on:</em>
  11453. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  11454. </p>
  11455. <p>
  11456. <p>VaultCheckAndSet defines the Check-And-Set (CAS) settings for Vault KV v2 PushSecret operations.</p>
  11457. </p>
  11458. <table>
  11459. <thead>
  11460. <tr>
  11461. <th>Field</th>
  11462. <th>Description</th>
  11463. </tr>
  11464. </thead>
  11465. <tbody>
  11466. <tr>
  11467. <td>
  11468. <code>required</code></br>
  11469. <em>
  11470. bool
  11471. </em>
  11472. </td>
  11473. <td>
  11474. <em>(Optional)</em>
  11475. <p>Required when true, all write operations must include a check-and-set parameter.
  11476. This helps prevent unintentional overwrites of secrets.</p>
  11477. </td>
  11478. </tr>
  11479. </tbody>
  11480. </table>
  11481. <h3 id="external-secrets.io/v1.VaultClientTLS">VaultClientTLS
  11482. </h3>
  11483. <p>
  11484. (<em>Appears on:</em>
  11485. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  11486. </p>
  11487. <p>
  11488. <p>VaultClientTLS is the configuration used for client side related TLS communication,
  11489. when the Vault server requires mutual authentication.</p>
  11490. </p>
  11491. <table>
  11492. <thead>
  11493. <tr>
  11494. <th>Field</th>
  11495. <th>Description</th>
  11496. </tr>
  11497. </thead>
  11498. <tbody>
  11499. <tr>
  11500. <td>
  11501. <code>certSecretRef</code></br>
  11502. <em>
  11503. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11504. External Secrets meta/v1.SecretKeySelector
  11505. </a>
  11506. </em>
  11507. </td>
  11508. <td>
  11509. <em>(Optional)</em>
  11510. <p>CertSecretRef is a certificate added to the transport layer
  11511. when communicating with the Vault server.
  11512. If no key for the Secret is specified, external-secret will default to &lsquo;tls.crt&rsquo;.</p>
  11513. </td>
  11514. </tr>
  11515. <tr>
  11516. <td>
  11517. <code>keySecretRef</code></br>
  11518. <em>
  11519. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11520. External Secrets meta/v1.SecretKeySelector
  11521. </a>
  11522. </em>
  11523. </td>
  11524. <td>
  11525. <em>(Optional)</em>
  11526. <p>KeySecretRef to a key in a Secret resource containing client private key
  11527. added to the transport layer when communicating with the Vault server.
  11528. If no key for the Secret is specified, external-secret will default to &lsquo;tls.key&rsquo;.</p>
  11529. </td>
  11530. </tr>
  11531. </tbody>
  11532. </table>
  11533. <h3 id="external-secrets.io/v1.VaultIamAuth">VaultIamAuth
  11534. </h3>
  11535. <p>
  11536. (<em>Appears on:</em>
  11537. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  11538. </p>
  11539. <p>
  11540. <p>VaultIamAuth authenticates with Vault using the Vault&rsquo;s AWS IAM authentication method. Refer: <a href="https://developer.hashicorp.com/vault/docs/auth/aws">https://developer.hashicorp.com/vault/docs/auth/aws</a></p>
  11541. <p>When JWTAuth and SecretRef are not specified, the provider will use the controller pod&rsquo;s
  11542. identity to authenticate with AWS. This supports both IRSA and EKS Pod Identity.</p>
  11543. </p>
  11544. <table>
  11545. <thead>
  11546. <tr>
  11547. <th>Field</th>
  11548. <th>Description</th>
  11549. </tr>
  11550. </thead>
  11551. <tbody>
  11552. <tr>
  11553. <td>
  11554. <code>path</code></br>
  11555. <em>
  11556. string
  11557. </em>
  11558. </td>
  11559. <td>
  11560. <em>(Optional)</em>
  11561. <p>Path where the AWS auth method is enabled in Vault, e.g: &ldquo;aws&rdquo;</p>
  11562. </td>
  11563. </tr>
  11564. <tr>
  11565. <td>
  11566. <code>region</code></br>
  11567. <em>
  11568. string
  11569. </em>
  11570. </td>
  11571. <td>
  11572. <em>(Optional)</em>
  11573. <p>AWS region</p>
  11574. </td>
  11575. </tr>
  11576. <tr>
  11577. <td>
  11578. <code>role</code></br>
  11579. <em>
  11580. string
  11581. </em>
  11582. </td>
  11583. <td>
  11584. <em>(Optional)</em>
  11585. <p>This is the AWS role to be assumed before talking to vault</p>
  11586. </td>
  11587. </tr>
  11588. <tr>
  11589. <td>
  11590. <code>vaultRole</code></br>
  11591. <em>
  11592. string
  11593. </em>
  11594. </td>
  11595. <td>
  11596. <p>Vault Role. In vault, a role describes an identity with a set of permissions, groups, or policies you want to attach a user of the secrets engine</p>
  11597. </td>
  11598. </tr>
  11599. <tr>
  11600. <td>
  11601. <code>externalID</code></br>
  11602. <em>
  11603. string
  11604. </em>
  11605. </td>
  11606. <td>
  11607. <p>AWS External ID set on assumed IAM roles</p>
  11608. </td>
  11609. </tr>
  11610. <tr>
  11611. <td>
  11612. <code>vaultAwsIamServerID</code></br>
  11613. <em>
  11614. string
  11615. </em>
  11616. </td>
  11617. <td>
  11618. <em>(Optional)</em>
  11619. <p>X-Vault-AWS-IAM-Server-ID is an additional header used by Vault IAM auth method to mitigate against different types of replay attacks. More details here: <a href="https://developer.hashicorp.com/vault/docs/auth/aws">https://developer.hashicorp.com/vault/docs/auth/aws</a></p>
  11620. </td>
  11621. </tr>
  11622. <tr>
  11623. <td>
  11624. <code>secretRef</code></br>
  11625. <em>
  11626. <a href="#external-secrets.io/v1.VaultAwsAuthSecretRef">
  11627. VaultAwsAuthSecretRef
  11628. </a>
  11629. </em>
  11630. </td>
  11631. <td>
  11632. <em>(Optional)</em>
  11633. <p>Specify credentials in a Secret object</p>
  11634. </td>
  11635. </tr>
  11636. <tr>
  11637. <td>
  11638. <code>jwt</code></br>
  11639. <em>
  11640. <a href="#external-secrets.io/v1.VaultAwsJWTAuth">
  11641. VaultAwsJWTAuth
  11642. </a>
  11643. </em>
  11644. </td>
  11645. <td>
  11646. <em>(Optional)</em>
  11647. <p>Specify a service account with IRSA enabled</p>
  11648. </td>
  11649. </tr>
  11650. </tbody>
  11651. </table>
  11652. <h3 id="external-secrets.io/v1.VaultJwtAuth">VaultJwtAuth
  11653. </h3>
  11654. <p>
  11655. (<em>Appears on:</em>
  11656. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  11657. </p>
  11658. <p>
  11659. <p>VaultJwtAuth authenticates with Vault using the JWT/OIDC authentication
  11660. method, with the role name and a token stored in a Kubernetes Secret resource or
  11661. a Kubernetes service account token retrieved via <code>TokenRequest</code>.</p>
  11662. </p>
  11663. <table>
  11664. <thead>
  11665. <tr>
  11666. <th>Field</th>
  11667. <th>Description</th>
  11668. </tr>
  11669. </thead>
  11670. <tbody>
  11671. <tr>
  11672. <td>
  11673. <code>path</code></br>
  11674. <em>
  11675. string
  11676. </em>
  11677. </td>
  11678. <td>
  11679. <p>Path where the JWT authentication backend is mounted
  11680. in Vault, e.g: &ldquo;jwt&rdquo;</p>
  11681. </td>
  11682. </tr>
  11683. <tr>
  11684. <td>
  11685. <code>role</code></br>
  11686. <em>
  11687. string
  11688. </em>
  11689. </td>
  11690. <td>
  11691. <em>(Optional)</em>
  11692. <p>Role is a JWT role to authenticate using the JWT/OIDC Vault
  11693. authentication method</p>
  11694. </td>
  11695. </tr>
  11696. <tr>
  11697. <td>
  11698. <code>secretRef</code></br>
  11699. <em>
  11700. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11701. External Secrets meta/v1.SecretKeySelector
  11702. </a>
  11703. </em>
  11704. </td>
  11705. <td>
  11706. <em>(Optional)</em>
  11707. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  11708. authenticate with Vault using the JWT/OIDC authentication method.</p>
  11709. </td>
  11710. </tr>
  11711. <tr>
  11712. <td>
  11713. <code>kubernetesServiceAccountToken</code></br>
  11714. <em>
  11715. <a href="#external-secrets.io/v1.VaultKubernetesServiceAccountTokenAuth">
  11716. VaultKubernetesServiceAccountTokenAuth
  11717. </a>
  11718. </em>
  11719. </td>
  11720. <td>
  11721. <em>(Optional)</em>
  11722. <p>Optional ServiceAccountToken specifies the Kubernetes service account for which to request
  11723. a token for with the <code>TokenRequest</code> API.</p>
  11724. </td>
  11725. </tr>
  11726. </tbody>
  11727. </table>
  11728. <h3 id="external-secrets.io/v1.VaultKVStoreVersion">VaultKVStoreVersion
  11729. (<code>string</code> alias)</p></h3>
  11730. <p>
  11731. (<em>Appears on:</em>
  11732. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  11733. </p>
  11734. <p>
  11735. </p>
  11736. <table>
  11737. <thead>
  11738. <tr>
  11739. <th>Value</th>
  11740. <th>Description</th>
  11741. </tr>
  11742. </thead>
  11743. <tbody><tr><td><p>&#34;v1&#34;</p></td>
  11744. <td></td>
  11745. </tr><tr><td><p>&#34;v2&#34;</p></td>
  11746. <td></td>
  11747. </tr></tbody>
  11748. </table>
  11749. <h3 id="external-secrets.io/v1.VaultKubernetesAuth">VaultKubernetesAuth
  11750. </h3>
  11751. <p>
  11752. (<em>Appears on:</em>
  11753. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  11754. </p>
  11755. <p>
  11756. <p>Authenticate against Vault using a Kubernetes ServiceAccount token stored in
  11757. a Secret.</p>
  11758. </p>
  11759. <table>
  11760. <thead>
  11761. <tr>
  11762. <th>Field</th>
  11763. <th>Description</th>
  11764. </tr>
  11765. </thead>
  11766. <tbody>
  11767. <tr>
  11768. <td>
  11769. <code>mountPath</code></br>
  11770. <em>
  11771. string
  11772. </em>
  11773. </td>
  11774. <td>
  11775. <p>Path where the Kubernetes authentication backend is mounted in Vault, e.g:
  11776. &ldquo;kubernetes&rdquo;</p>
  11777. </td>
  11778. </tr>
  11779. <tr>
  11780. <td>
  11781. <code>serviceAccountRef</code></br>
  11782. <em>
  11783. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  11784. External Secrets meta/v1.ServiceAccountSelector
  11785. </a>
  11786. </em>
  11787. </td>
  11788. <td>
  11789. <em>(Optional)</em>
  11790. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  11791. If the service account is specified, the service account secret token JWT will be used
  11792. for authenticating with Vault. If the service account selector is not supplied,
  11793. the secretRef will be used instead.</p>
  11794. </td>
  11795. </tr>
  11796. <tr>
  11797. <td>
  11798. <code>secretRef</code></br>
  11799. <em>
  11800. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11801. External Secrets meta/v1.SecretKeySelector
  11802. </a>
  11803. </em>
  11804. </td>
  11805. <td>
  11806. <em>(Optional)</em>
  11807. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  11808. for authenticating with Vault. If a name is specified without a key,
  11809. <code>token</code> is the default. If one is not specified, the one bound to
  11810. the controller will be used.</p>
  11811. </td>
  11812. </tr>
  11813. <tr>
  11814. <td>
  11815. <code>role</code></br>
  11816. <em>
  11817. string
  11818. </em>
  11819. </td>
  11820. <td>
  11821. <p>A required field containing the Vault Role to assume. A Role binds a
  11822. Kubernetes ServiceAccount with a set of Vault policies.</p>
  11823. </td>
  11824. </tr>
  11825. </tbody>
  11826. </table>
  11827. <h3 id="external-secrets.io/v1.VaultKubernetesServiceAccountTokenAuth">VaultKubernetesServiceAccountTokenAuth
  11828. </h3>
  11829. <p>
  11830. (<em>Appears on:</em>
  11831. <a href="#external-secrets.io/v1.VaultJwtAuth">VaultJwtAuth</a>)
  11832. </p>
  11833. <p>
  11834. <p>VaultKubernetesServiceAccountTokenAuth authenticates with Vault using a temporary
  11835. Kubernetes service account token retrieved by the <code>TokenRequest</code> API.</p>
  11836. </p>
  11837. <table>
  11838. <thead>
  11839. <tr>
  11840. <th>Field</th>
  11841. <th>Description</th>
  11842. </tr>
  11843. </thead>
  11844. <tbody>
  11845. <tr>
  11846. <td>
  11847. <code>serviceAccountRef</code></br>
  11848. <em>
  11849. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  11850. External Secrets meta/v1.ServiceAccountSelector
  11851. </a>
  11852. </em>
  11853. </td>
  11854. <td>
  11855. <p>Service account field containing the name of a kubernetes ServiceAccount.</p>
  11856. </td>
  11857. </tr>
  11858. <tr>
  11859. <td>
  11860. <code>audiences</code></br>
  11861. <em>
  11862. []string
  11863. </em>
  11864. </td>
  11865. <td>
  11866. <em>(Optional)</em>
  11867. <p>Optional audiences field that will be used to request a temporary Kubernetes service
  11868. account token for the service account referenced by <code>serviceAccountRef</code>.
  11869. Defaults to a single audience <code>vault</code> it not specified.
  11870. Deprecated: use serviceAccountRef.Audiences instead</p>
  11871. </td>
  11872. </tr>
  11873. <tr>
  11874. <td>
  11875. <code>expirationSeconds</code></br>
  11876. <em>
  11877. int64
  11878. </em>
  11879. </td>
  11880. <td>
  11881. <em>(Optional)</em>
  11882. <p>Optional expiration time in seconds that will be used to request a temporary
  11883. Kubernetes service account token for the service account referenced by
  11884. <code>serviceAccountRef</code>.
  11885. Deprecated: this will be removed in the future.
  11886. Defaults to 10 minutes.</p>
  11887. </td>
  11888. </tr>
  11889. </tbody>
  11890. </table>
  11891. <h3 id="external-secrets.io/v1.VaultLdapAuth">VaultLdapAuth
  11892. </h3>
  11893. <p>
  11894. (<em>Appears on:</em>
  11895. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  11896. </p>
  11897. <p>
  11898. <p>VaultLdapAuth authenticates with Vault using the LDAP authentication method,
  11899. with the username and password stored in a Kubernetes Secret resource.</p>
  11900. </p>
  11901. <table>
  11902. <thead>
  11903. <tr>
  11904. <th>Field</th>
  11905. <th>Description</th>
  11906. </tr>
  11907. </thead>
  11908. <tbody>
  11909. <tr>
  11910. <td>
  11911. <code>path</code></br>
  11912. <em>
  11913. string
  11914. </em>
  11915. </td>
  11916. <td>
  11917. <p>Path where the LDAP authentication backend is mounted
  11918. in Vault, e.g: &ldquo;ldap&rdquo;</p>
  11919. </td>
  11920. </tr>
  11921. <tr>
  11922. <td>
  11923. <code>username</code></br>
  11924. <em>
  11925. string
  11926. </em>
  11927. </td>
  11928. <td>
  11929. <p>Username is an LDAP username used to authenticate using the LDAP Vault
  11930. authentication method</p>
  11931. </td>
  11932. </tr>
  11933. <tr>
  11934. <td>
  11935. <code>secretRef</code></br>
  11936. <em>
  11937. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11938. External Secrets meta/v1.SecretKeySelector
  11939. </a>
  11940. </em>
  11941. </td>
  11942. <td>
  11943. <em>(Optional)</em>
  11944. <p>SecretRef to a key in a Secret resource containing password for the LDAP
  11945. user used to authenticate with Vault using the LDAP authentication
  11946. method</p>
  11947. </td>
  11948. </tr>
  11949. </tbody>
  11950. </table>
  11951. <h3 id="external-secrets.io/v1.VaultProvider">VaultProvider
  11952. </h3>
  11953. <p>
  11954. (<em>Appears on:</em>
  11955. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  11956. </p>
  11957. <p>
  11958. <p>Configures an store to sync secrets using a HashiCorp Vault
  11959. KV backend.</p>
  11960. </p>
  11961. <table>
  11962. <thead>
  11963. <tr>
  11964. <th>Field</th>
  11965. <th>Description</th>
  11966. </tr>
  11967. </thead>
  11968. <tbody>
  11969. <tr>
  11970. <td>
  11971. <code>auth</code></br>
  11972. <em>
  11973. <a href="#external-secrets.io/v1.VaultAuth">
  11974. VaultAuth
  11975. </a>
  11976. </em>
  11977. </td>
  11978. <td>
  11979. <p>Auth configures how secret-manager authenticates with the Vault server.</p>
  11980. </td>
  11981. </tr>
  11982. <tr>
  11983. <td>
  11984. <code>server</code></br>
  11985. <em>
  11986. string
  11987. </em>
  11988. </td>
  11989. <td>
  11990. <p>Server is the connection address for the Vault server, e.g: &ldquo;<a href="https://vault.example.com:8200&quot;">https://vault.example.com:8200&rdquo;</a>.</p>
  11991. </td>
  11992. </tr>
  11993. <tr>
  11994. <td>
  11995. <code>path</code></br>
  11996. <em>
  11997. string
  11998. </em>
  11999. </td>
  12000. <td>
  12001. <em>(Optional)</em>
  12002. <p>Path is the mount path of the Vault KV backend endpoint, e.g:
  12003. &ldquo;secret&rdquo;. The v2 KV secret engine version specific &ldquo;/data&rdquo; path suffix
  12004. for fetching secrets from Vault is optional and will be appended
  12005. if not present in specified path.</p>
  12006. </td>
  12007. </tr>
  12008. <tr>
  12009. <td>
  12010. <code>version</code></br>
  12011. <em>
  12012. <a href="#external-secrets.io/v1.VaultKVStoreVersion">
  12013. VaultKVStoreVersion
  12014. </a>
  12015. </em>
  12016. </td>
  12017. <td>
  12018. <p>Version is the Vault KV secret engine version. This can be either &ldquo;v1&rdquo; or
  12019. &ldquo;v2&rdquo;. Version defaults to &ldquo;v2&rdquo;.</p>
  12020. </td>
  12021. </tr>
  12022. <tr>
  12023. <td>
  12024. <code>namespace</code></br>
  12025. <em>
  12026. string
  12027. </em>
  12028. </td>
  12029. <td>
  12030. <em>(Optional)</em>
  12031. <p>Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows
  12032. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  12033. More about namespaces can be found here <a href="https://www.vaultproject.io/docs/enterprise/namespaces">https://www.vaultproject.io/docs/enterprise/namespaces</a></p>
  12034. </td>
  12035. </tr>
  12036. <tr>
  12037. <td>
  12038. <code>caBundle</code></br>
  12039. <em>
  12040. []byte
  12041. </em>
  12042. </td>
  12043. <td>
  12044. <em>(Optional)</em>
  12045. <p>PEM encoded CA bundle used to validate Vault server certificate. Only used
  12046. if the Server URL is using HTTPS protocol. This parameter is ignored for
  12047. plain HTTP protocol connection. If not set the system root certificates
  12048. are used to validate the TLS connection.</p>
  12049. </td>
  12050. </tr>
  12051. <tr>
  12052. <td>
  12053. <code>tls</code></br>
  12054. <em>
  12055. <a href="#external-secrets.io/v1.VaultClientTLS">
  12056. VaultClientTLS
  12057. </a>
  12058. </em>
  12059. </td>
  12060. <td>
  12061. <em>(Optional)</em>
  12062. <p>The configuration used for client side related TLS communication, when the Vault server
  12063. requires mutual authentication. Only used if the Server URL is using HTTPS protocol.
  12064. This parameter is ignored for plain HTTP protocol connection.
  12065. It&rsquo;s worth noting this configuration is different from the &ldquo;TLS certificates auth method&rdquo;,
  12066. which is available under the <code>auth.cert</code> section.</p>
  12067. </td>
  12068. </tr>
  12069. <tr>
  12070. <td>
  12071. <code>caProvider</code></br>
  12072. <em>
  12073. <a href="#external-secrets.io/v1.CAProvider">
  12074. CAProvider
  12075. </a>
  12076. </em>
  12077. </td>
  12078. <td>
  12079. <em>(Optional)</em>
  12080. <p>The provider for the CA bundle to use to validate Vault server certificate.</p>
  12081. </td>
  12082. </tr>
  12083. <tr>
  12084. <td>
  12085. <code>readYourWrites</code></br>
  12086. <em>
  12087. bool
  12088. </em>
  12089. </td>
  12090. <td>
  12091. <em>(Optional)</em>
  12092. <p>ReadYourWrites ensures isolated read-after-write semantics by
  12093. providing discovered cluster replication states in each request.
  12094. More information about eventual consistency in Vault can be found here
  12095. <a href="https://www.vaultproject.io/docs/enterprise/consistency">https://www.vaultproject.io/docs/enterprise/consistency</a></p>
  12096. </td>
  12097. </tr>
  12098. <tr>
  12099. <td>
  12100. <code>forwardInconsistent</code></br>
  12101. <em>
  12102. bool
  12103. </em>
  12104. </td>
  12105. <td>
  12106. <em>(Optional)</em>
  12107. <p>ForwardInconsistent tells Vault to forward read-after-write requests to the Vault
  12108. leader instead of simply retrying within a loop. This can increase performance if
  12109. the option is enabled serverside.
  12110. <a href="https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header">https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header</a></p>
  12111. </td>
  12112. </tr>
  12113. <tr>
  12114. <td>
  12115. <code>headers</code></br>
  12116. <em>
  12117. map[string]string
  12118. </em>
  12119. </td>
  12120. <td>
  12121. <em>(Optional)</em>
  12122. <p>Headers to be added in Vault request</p>
  12123. </td>
  12124. </tr>
  12125. <tr>
  12126. <td>
  12127. <code>checkAndSet</code></br>
  12128. <em>
  12129. <a href="#external-secrets.io/v1.VaultCheckAndSet">
  12130. VaultCheckAndSet
  12131. </a>
  12132. </em>
  12133. </td>
  12134. <td>
  12135. <em>(Optional)</em>
  12136. <p>CheckAndSet defines the Check-And-Set (CAS) settings for PushSecret operations.
  12137. Only applies to Vault KV v2 stores. When enabled, write operations must include
  12138. the current version of the secret to prevent unintentional overwrites.</p>
  12139. </td>
  12140. </tr>
  12141. </tbody>
  12142. </table>
  12143. <h3 id="external-secrets.io/v1.VaultUserPassAuth">VaultUserPassAuth
  12144. </h3>
  12145. <p>
  12146. (<em>Appears on:</em>
  12147. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  12148. </p>
  12149. <p>
  12150. <p>VaultUserPassAuth authenticates with Vault using UserPass authentication method,
  12151. with the username and password stored in a Kubernetes Secret resource.</p>
  12152. </p>
  12153. <table>
  12154. <thead>
  12155. <tr>
  12156. <th>Field</th>
  12157. <th>Description</th>
  12158. </tr>
  12159. </thead>
  12160. <tbody>
  12161. <tr>
  12162. <td>
  12163. <code>path</code></br>
  12164. <em>
  12165. string
  12166. </em>
  12167. </td>
  12168. <td>
  12169. <p>Path where the UserPassword authentication backend is mounted
  12170. in Vault, e.g: &ldquo;userpass&rdquo;</p>
  12171. </td>
  12172. </tr>
  12173. <tr>
  12174. <td>
  12175. <code>username</code></br>
  12176. <em>
  12177. string
  12178. </em>
  12179. </td>
  12180. <td>
  12181. <p>Username is a username used to authenticate using the UserPass Vault
  12182. authentication method</p>
  12183. </td>
  12184. </tr>
  12185. <tr>
  12186. <td>
  12187. <code>secretRef</code></br>
  12188. <em>
  12189. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  12190. External Secrets meta/v1.SecretKeySelector
  12191. </a>
  12192. </em>
  12193. </td>
  12194. <td>
  12195. <em>(Optional)</em>
  12196. <p>SecretRef to a key in a Secret resource containing password for the
  12197. user used to authenticate with Vault using the UserPass authentication
  12198. method</p>
  12199. </td>
  12200. </tr>
  12201. </tbody>
  12202. </table>
  12203. <h3 id="external-secrets.io/v1.VolcengineAuth">VolcengineAuth
  12204. </h3>
  12205. <p>
  12206. (<em>Appears on:</em>
  12207. <a href="#external-secrets.io/v1.VolcengineProvider">VolcengineProvider</a>)
  12208. </p>
  12209. <p>
  12210. <p>VolcengineAuth defines the authentication method for the Volcengine provider.
  12211. Only one of the fields should be set.</p>
  12212. </p>
  12213. <table>
  12214. <thead>
  12215. <tr>
  12216. <th>Field</th>
  12217. <th>Description</th>
  12218. </tr>
  12219. </thead>
  12220. <tbody>
  12221. <tr>
  12222. <td>
  12223. <code>secretRef</code></br>
  12224. <em>
  12225. <a href="#external-secrets.io/v1.VolcengineAuthSecretRef">
  12226. VolcengineAuthSecretRef
  12227. </a>
  12228. </em>
  12229. </td>
  12230. <td>
  12231. <em>(Optional)</em>
  12232. <p>SecretRef defines the static credentials to use for authentication.
  12233. If not set, IRSA is used.</p>
  12234. </td>
  12235. </tr>
  12236. </tbody>
  12237. </table>
  12238. <h3 id="external-secrets.io/v1.VolcengineAuthSecretRef">VolcengineAuthSecretRef
  12239. </h3>
  12240. <p>
  12241. (<em>Appears on:</em>
  12242. <a href="#external-secrets.io/v1.VolcengineAuth">VolcengineAuth</a>)
  12243. </p>
  12244. <p>
  12245. <p>VolcengineAuthSecretRef defines the secret reference for static credentials.</p>
  12246. </p>
  12247. <table>
  12248. <thead>
  12249. <tr>
  12250. <th>Field</th>
  12251. <th>Description</th>
  12252. </tr>
  12253. </thead>
  12254. <tbody>
  12255. <tr>
  12256. <td>
  12257. <code>accessKeyID</code></br>
  12258. <em>
  12259. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  12260. External Secrets meta/v1.SecretKeySelector
  12261. </a>
  12262. </em>
  12263. </td>
  12264. <td>
  12265. <p>AccessKeyID is the reference to the secret containing the Access Key ID.</p>
  12266. </td>
  12267. </tr>
  12268. <tr>
  12269. <td>
  12270. <code>secretAccessKey</code></br>
  12271. <em>
  12272. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  12273. External Secrets meta/v1.SecretKeySelector
  12274. </a>
  12275. </em>
  12276. </td>
  12277. <td>
  12278. <p>SecretAccessKey is the reference to the secret containing the Secret Access Key.</p>
  12279. </td>
  12280. </tr>
  12281. <tr>
  12282. <td>
  12283. <code>token</code></br>
  12284. <em>
  12285. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  12286. External Secrets meta/v1.SecretKeySelector
  12287. </a>
  12288. </em>
  12289. </td>
  12290. <td>
  12291. <em>(Optional)</em>
  12292. <p>Token is the reference to the secret containing the STS(Security Token Service) Token.</p>
  12293. </td>
  12294. </tr>
  12295. </tbody>
  12296. </table>
  12297. <h3 id="external-secrets.io/v1.VolcengineProvider">VolcengineProvider
  12298. </h3>
  12299. <p>
  12300. (<em>Appears on:</em>
  12301. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  12302. </p>
  12303. <p>
  12304. <p>VolcengineProvider defines the configuration for the Volcengine provider.</p>
  12305. </p>
  12306. <table>
  12307. <thead>
  12308. <tr>
  12309. <th>Field</th>
  12310. <th>Description</th>
  12311. </tr>
  12312. </thead>
  12313. <tbody>
  12314. <tr>
  12315. <td>
  12316. <code>region</code></br>
  12317. <em>
  12318. string
  12319. </em>
  12320. </td>
  12321. <td>
  12322. <p>Region specifies the Volcengine region to connect to.</p>
  12323. </td>
  12324. </tr>
  12325. <tr>
  12326. <td>
  12327. <code>auth</code></br>
  12328. <em>
  12329. <a href="#external-secrets.io/v1.VolcengineAuth">
  12330. VolcengineAuth
  12331. </a>
  12332. </em>
  12333. </td>
  12334. <td>
  12335. <em>(Optional)</em>
  12336. <p>Auth defines the authentication method to use.
  12337. If not specified, the provider will try to use IRSA (IAM Role for Service Account).</p>
  12338. </td>
  12339. </tr>
  12340. </tbody>
  12341. </table>
  12342. <h3 id="external-secrets.io/v1.WebhookCAProvider">WebhookCAProvider
  12343. </h3>
  12344. <p>
  12345. (<em>Appears on:</em>
  12346. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  12347. </p>
  12348. <p>
  12349. <p>Defines a location to fetch the cert for the webhook provider from.</p>
  12350. </p>
  12351. <table>
  12352. <thead>
  12353. <tr>
  12354. <th>Field</th>
  12355. <th>Description</th>
  12356. </tr>
  12357. </thead>
  12358. <tbody>
  12359. <tr>
  12360. <td>
  12361. <code>type</code></br>
  12362. <em>
  12363. <a href="#external-secrets.io/v1.WebhookCAProviderType">
  12364. WebhookCAProviderType
  12365. </a>
  12366. </em>
  12367. </td>
  12368. <td>
  12369. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  12370. </td>
  12371. </tr>
  12372. <tr>
  12373. <td>
  12374. <code>name</code></br>
  12375. <em>
  12376. string
  12377. </em>
  12378. </td>
  12379. <td>
  12380. <p>The name of the object located at the provider type.</p>
  12381. </td>
  12382. </tr>
  12383. <tr>
  12384. <td>
  12385. <code>key</code></br>
  12386. <em>
  12387. string
  12388. </em>
  12389. </td>
  12390. <td>
  12391. <p>The key where the CA certificate can be found in the Secret or ConfigMap.</p>
  12392. </td>
  12393. </tr>
  12394. <tr>
  12395. <td>
  12396. <code>namespace</code></br>
  12397. <em>
  12398. string
  12399. </em>
  12400. </td>
  12401. <td>
  12402. <em>(Optional)</em>
  12403. <p>The namespace the Provider type is in.</p>
  12404. </td>
  12405. </tr>
  12406. </tbody>
  12407. </table>
  12408. <h3 id="external-secrets.io/v1.WebhookCAProviderType">WebhookCAProviderType
  12409. (<code>string</code> alias)</p></h3>
  12410. <p>
  12411. (<em>Appears on:</em>
  12412. <a href="#external-secrets.io/v1.WebhookCAProvider">WebhookCAProvider</a>)
  12413. </p>
  12414. <p>
  12415. </p>
  12416. <table>
  12417. <thead>
  12418. <tr>
  12419. <th>Value</th>
  12420. <th>Description</th>
  12421. </tr>
  12422. </thead>
  12423. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  12424. <td></td>
  12425. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  12426. <td></td>
  12427. </tr></tbody>
  12428. </table>
  12429. <h3 id="external-secrets.io/v1.WebhookProvider">WebhookProvider
  12430. </h3>
  12431. <p>
  12432. (<em>Appears on:</em>
  12433. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  12434. </p>
  12435. <p>
  12436. <p>WebHookProvider Configures an store to sync secrets from simple web apis.</p>
  12437. </p>
  12438. <table>
  12439. <thead>
  12440. <tr>
  12441. <th>Field</th>
  12442. <th>Description</th>
  12443. </tr>
  12444. </thead>
  12445. <tbody>
  12446. <tr>
  12447. <td>
  12448. <code>method</code></br>
  12449. <em>
  12450. string
  12451. </em>
  12452. </td>
  12453. <td>
  12454. <p>Webhook Method</p>
  12455. </td>
  12456. </tr>
  12457. <tr>
  12458. <td>
  12459. <code>url</code></br>
  12460. <em>
  12461. string
  12462. </em>
  12463. </td>
  12464. <td>
  12465. <p>Webhook url to call</p>
  12466. </td>
  12467. </tr>
  12468. <tr>
  12469. <td>
  12470. <code>headers</code></br>
  12471. <em>
  12472. map[string]string
  12473. </em>
  12474. </td>
  12475. <td>
  12476. <em>(Optional)</em>
  12477. <p>Headers</p>
  12478. </td>
  12479. </tr>
  12480. <tr>
  12481. <td>
  12482. <code>auth</code></br>
  12483. <em>
  12484. <a href="#external-secrets.io/v1.AuthorizationProtocol">
  12485. AuthorizationProtocol
  12486. </a>
  12487. </em>
  12488. </td>
  12489. <td>
  12490. <em>(Optional)</em>
  12491. <p>Auth specifies a authorization protocol. Only one protocol may be set.</p>
  12492. </td>
  12493. </tr>
  12494. <tr>
  12495. <td>
  12496. <code>body</code></br>
  12497. <em>
  12498. string
  12499. </em>
  12500. </td>
  12501. <td>
  12502. <em>(Optional)</em>
  12503. <p>Body</p>
  12504. </td>
  12505. </tr>
  12506. <tr>
  12507. <td>
  12508. <code>timeout</code></br>
  12509. <em>
  12510. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  12511. Kubernetes meta/v1.Duration
  12512. </a>
  12513. </em>
  12514. </td>
  12515. <td>
  12516. <em>(Optional)</em>
  12517. <p>Timeout</p>
  12518. </td>
  12519. </tr>
  12520. <tr>
  12521. <td>
  12522. <code>result</code></br>
  12523. <em>
  12524. <a href="#external-secrets.io/v1.WebhookResult">
  12525. WebhookResult
  12526. </a>
  12527. </em>
  12528. </td>
  12529. <td>
  12530. <p>Result formatting</p>
  12531. </td>
  12532. </tr>
  12533. <tr>
  12534. <td>
  12535. <code>secrets</code></br>
  12536. <em>
  12537. <a href="#external-secrets.io/v1.WebhookSecret">
  12538. []WebhookSecret
  12539. </a>
  12540. </em>
  12541. </td>
  12542. <td>
  12543. <em>(Optional)</em>
  12544. <p>Secrets to fill in templates
  12545. These secrets will be passed to the templating function as key value pairs under the given name</p>
  12546. </td>
  12547. </tr>
  12548. <tr>
  12549. <td>
  12550. <code>caBundle</code></br>
  12551. <em>
  12552. []byte
  12553. </em>
  12554. </td>
  12555. <td>
  12556. <em>(Optional)</em>
  12557. <p>PEM encoded CA bundle used to validate webhook server certificate. Only used
  12558. if the Server URL is using HTTPS protocol. This parameter is ignored for
  12559. plain HTTP protocol connection. If not set the system root certificates
  12560. are used to validate the TLS connection.</p>
  12561. </td>
  12562. </tr>
  12563. <tr>
  12564. <td>
  12565. <code>caProvider</code></br>
  12566. <em>
  12567. <a href="#external-secrets.io/v1.WebhookCAProvider">
  12568. WebhookCAProvider
  12569. </a>
  12570. </em>
  12571. </td>
  12572. <td>
  12573. <em>(Optional)</em>
  12574. <p>The provider for the CA bundle to use to validate webhook server certificate.</p>
  12575. </td>
  12576. </tr>
  12577. </tbody>
  12578. </table>
  12579. <h3 id="external-secrets.io/v1.WebhookResult">WebhookResult
  12580. </h3>
  12581. <p>
  12582. (<em>Appears on:</em>
  12583. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  12584. </p>
  12585. <p>
  12586. </p>
  12587. <table>
  12588. <thead>
  12589. <tr>
  12590. <th>Field</th>
  12591. <th>Description</th>
  12592. </tr>
  12593. </thead>
  12594. <tbody>
  12595. <tr>
  12596. <td>
  12597. <code>jsonPath</code></br>
  12598. <em>
  12599. string
  12600. </em>
  12601. </td>
  12602. <td>
  12603. <em>(Optional)</em>
  12604. <p>Json path of return value</p>
  12605. </td>
  12606. </tr>
  12607. </tbody>
  12608. </table>
  12609. <h3 id="external-secrets.io/v1.WebhookSecret">WebhookSecret
  12610. </h3>
  12611. <p>
  12612. (<em>Appears on:</em>
  12613. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  12614. </p>
  12615. <p>
  12616. </p>
  12617. <table>
  12618. <thead>
  12619. <tr>
  12620. <th>Field</th>
  12621. <th>Description</th>
  12622. </tr>
  12623. </thead>
  12624. <tbody>
  12625. <tr>
  12626. <td>
  12627. <code>name</code></br>
  12628. <em>
  12629. string
  12630. </em>
  12631. </td>
  12632. <td>
  12633. <p>Name of this secret in templates</p>
  12634. </td>
  12635. </tr>
  12636. <tr>
  12637. <td>
  12638. <code>secretRef</code></br>
  12639. <em>
  12640. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  12641. External Secrets meta/v1.SecretKeySelector
  12642. </a>
  12643. </em>
  12644. </td>
  12645. <td>
  12646. <p>Secret ref to fill in credentials</p>
  12647. </td>
  12648. </tr>
  12649. </tbody>
  12650. </table>
  12651. <h3 id="external-secrets.io/v1.YandexAuth">YandexAuth
  12652. </h3>
  12653. <p>
  12654. (<em>Appears on:</em>
  12655. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>,
  12656. <a href="#external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider</a>)
  12657. </p>
  12658. <p>
  12659. </p>
  12660. <table>
  12661. <thead>
  12662. <tr>
  12663. <th>Field</th>
  12664. <th>Description</th>
  12665. </tr>
  12666. </thead>
  12667. <tbody>
  12668. <tr>
  12669. <td>
  12670. <code>authorizedKeySecretRef</code></br>
  12671. <em>
  12672. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  12673. External Secrets meta/v1.SecretKeySelector
  12674. </a>
  12675. </em>
  12676. </td>
  12677. <td>
  12678. <em>(Optional)</em>
  12679. <p>The authorized key used for authentication</p>
  12680. </td>
  12681. </tr>
  12682. </tbody>
  12683. </table>
  12684. <h3 id="external-secrets.io/v1.YandexCAProvider">YandexCAProvider
  12685. </h3>
  12686. <p>
  12687. (<em>Appears on:</em>
  12688. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>,
  12689. <a href="#external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider</a>)
  12690. </p>
  12691. <p>
  12692. </p>
  12693. <table>
  12694. <thead>
  12695. <tr>
  12696. <th>Field</th>
  12697. <th>Description</th>
  12698. </tr>
  12699. </thead>
  12700. <tbody>
  12701. <tr>
  12702. <td>
  12703. <code>certSecretRef</code></br>
  12704. <em>
  12705. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  12706. External Secrets meta/v1.SecretKeySelector
  12707. </a>
  12708. </em>
  12709. </td>
  12710. <td>
  12711. </td>
  12712. </tr>
  12713. </tbody>
  12714. </table>
  12715. <h3 id="external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider
  12716. </h3>
  12717. <p>
  12718. (<em>Appears on:</em>
  12719. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  12720. </p>
  12721. <p>
  12722. <p>YandexCertificateManagerProvider Configures a store to sync secrets using the Yandex Certificate Manager provider.</p>
  12723. </p>
  12724. <table>
  12725. <thead>
  12726. <tr>
  12727. <th>Field</th>
  12728. <th>Description</th>
  12729. </tr>
  12730. </thead>
  12731. <tbody>
  12732. <tr>
  12733. <td>
  12734. <code>apiEndpoint</code></br>
  12735. <em>
  12736. string
  12737. </em>
  12738. </td>
  12739. <td>
  12740. <em>(Optional)</em>
  12741. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  12742. </td>
  12743. </tr>
  12744. <tr>
  12745. <td>
  12746. <code>auth</code></br>
  12747. <em>
  12748. <a href="#external-secrets.io/v1.YandexAuth">
  12749. YandexAuth
  12750. </a>
  12751. </em>
  12752. </td>
  12753. <td>
  12754. <p>Auth defines the information necessary to authenticate against Yandex.Cloud</p>
  12755. </td>
  12756. </tr>
  12757. <tr>
  12758. <td>
  12759. <code>caProvider</code></br>
  12760. <em>
  12761. <a href="#external-secrets.io/v1.YandexCAProvider">
  12762. YandexCAProvider
  12763. </a>
  12764. </em>
  12765. </td>
  12766. <td>
  12767. <em>(Optional)</em>
  12768. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  12769. </td>
  12770. </tr>
  12771. <tr>
  12772. <td>
  12773. <code>fetching</code></br>
  12774. <em>
  12775. <a href="#external-secrets.io/v1.FetchingPolicy">
  12776. FetchingPolicy
  12777. </a>
  12778. </em>
  12779. </td>
  12780. <td>
  12781. <em>(Optional)</em>
  12782. <p>FetchingPolicy configures the provider to interpret the <code>data.secretKey.remoteRef.key</code> field in ExternalSecret as certificate ID or certificate name</p>
  12783. </td>
  12784. </tr>
  12785. </tbody>
  12786. </table>
  12787. <h3 id="external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider
  12788. </h3>
  12789. <p>
  12790. (<em>Appears on:</em>
  12791. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  12792. </p>
  12793. <p>
  12794. <p>YandexLockboxProvider Configures a store to sync secrets using the Yandex Lockbox provider.</p>
  12795. </p>
  12796. <table>
  12797. <thead>
  12798. <tr>
  12799. <th>Field</th>
  12800. <th>Description</th>
  12801. </tr>
  12802. </thead>
  12803. <tbody>
  12804. <tr>
  12805. <td>
  12806. <code>apiEndpoint</code></br>
  12807. <em>
  12808. string
  12809. </em>
  12810. </td>
  12811. <td>
  12812. <em>(Optional)</em>
  12813. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  12814. </td>
  12815. </tr>
  12816. <tr>
  12817. <td>
  12818. <code>auth</code></br>
  12819. <em>
  12820. <a href="#external-secrets.io/v1.YandexAuth">
  12821. YandexAuth
  12822. </a>
  12823. </em>
  12824. </td>
  12825. <td>
  12826. <p>Auth defines the information necessary to authenticate against Yandex.Cloud</p>
  12827. </td>
  12828. </tr>
  12829. <tr>
  12830. <td>
  12831. <code>caProvider</code></br>
  12832. <em>
  12833. <a href="#external-secrets.io/v1.YandexCAProvider">
  12834. YandexCAProvider
  12835. </a>
  12836. </em>
  12837. </td>
  12838. <td>
  12839. <em>(Optional)</em>
  12840. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  12841. </td>
  12842. </tr>
  12843. <tr>
  12844. <td>
  12845. <code>fetching</code></br>
  12846. <em>
  12847. <a href="#external-secrets.io/v1.FetchingPolicy">
  12848. FetchingPolicy
  12849. </a>
  12850. </em>
  12851. </td>
  12852. <td>
  12853. <em>(Optional)</em>
  12854. <p>FetchingPolicy configures the provider to interpret the <code>data.secretKey.remoteRef.key</code> field in ExternalSecret as secret ID or secret name</p>
  12855. </td>
  12856. </tr>
  12857. </tbody>
  12858. </table>
  12859. <hr/>
  12860. <p><em>
  12861. Generated with <code>gen-crd-api-reference-docs</code>.
  12862. </em></p>
  12863. </article>
  12864. </div>
  12865. <script>var target=document.getElementById(location.hash.slice(1));target&&target.name&&(target.checked=target.name.startsWith("__tabbed_"))</script>
  12866. </div>
  12867. </main>
  12868. <img referrerpolicy="no-referrer-when-downgrade" src="https://static.scarf.sh/a.png?x-pxid=6658a9eb-067d-49f1-94f2-b8b00f21451e" alt=""/>
  12869. <footer class="md-footer">
  12870. <div class="md-footer-meta md-typeset">
  12871. <div class="md-footer-meta__inner md-grid">
  12872. <div class="md-copyright">
  12873. <div class="md-copyright__highlight">
  12874. &copy; 2025 The external-secrets Authors.<br/>
  12875. &copy; 2025 The Linux Foundation. All rights reserved.<br/><br/>
  12876. The Linux Foundation has registered trademarks and uses trademarks.<br/>
  12877. For a list of trademarks of The Linux Foundation, please see our <a href="https://www.linuxfoundation.org/trademark-usage/">Trademark Usage page</a>.
  12878. </div>
  12879. Made with
  12880. <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
  12881. Material for MkDocs
  12882. </a>
  12883. </div>
  12884. </div>
  12885. </div>
  12886. </footer>
  12887. </div>
  12888. <div class="md-dialog" data-md-component="dialog">
  12889. <div class="md-dialog__inner md-typeset"></div>
  12890. </div>
  12891. <script id="__config" type="application/json">{"base": "../..", "features": ["navigation.tabs", "navigation.indexes", "navigation.expand"], "search": "../../assets/javascripts/workers/search.973d3a69.min.js", "tags": null, "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}, "version": {"provider": "mike"}}</script>
  12892. <script src="../../assets/javascripts/bundle.f55a23d4.min.js"></script>
  12893. </body>
  12894. </html>